diff --git a/src/app/pages/dashboard-management/services/datastorage.service.ts b/src/app/pages/dashboard-management/services/datastorage.service.ts
index 83a1313baa0405048b5e19dd53bd3328c0464ea3..c478bd78dd2675a3b8c7246f49749a6e49d45035 100644
--- a/src/app/pages/dashboard-management/services/datastorage.service.ts
+++ b/src/app/pages/dashboard-management/services/datastorage.service.ts
@@ -14,6 +14,7 @@ export class DatastorageService {
     this.apiURL = configService.getSettings("datastorageURL");
     this.city = configService.getSettings("default_pilot");
     this.city = this.city.toLowerCase();
+    // https://messina.urbanite.esilab.org/data/getTData/
   }
 
   getMapLayers(id:string = undefined): Observable<any> {
@@ -23,4 +24,8 @@ export class DatastorageService {
       return this.http.get<any>(`${this.apiURL}/getTData/mapLayer/${this.city}`);
     }
   }
+
+  getMessinaCycling(): Observable<any> {
+    return this.http.get<any>('https://messina.urbanite.esilab.org/data/getTData/gtfsShape/messina?filters=%7B%20%22alternateName%22%3A%22CyclingPaths%22%7D');
+  }
 }
diff --git a/src/app/pages/map-layers/map-layers-routing.module.ts b/src/app/pages/map-layers/map-layers-routing.module.ts
index 87b1a40c756d825dea0f97b3b843dd8fe7bc7ff1..e953ea0d30650dc7d37dc92f982e03a21b951d42 100644
--- a/src/app/pages/map-layers/map-layers-routing.module.ts
+++ b/src/app/pages/map-layers/map-layers-routing.module.ts
@@ -4,12 +4,14 @@ import { MapLayersComponent } from './map-layers.component';
 import { RouterModule, Routes } from '@angular/router';
 import { MapComponent } from './map/map.component';
 import { MapLayerFilterComponent } from './map-layer-filter/map-layer-filter.component';
+import { AuthGuard } from '../../auth/services/auth.guard';
 
 
 const routes: Routes = [
   {
     path:'',
     component: MapLayersComponent,
+    canActivate: [AuthGuard],
     children: [
     {
       path:"map",
diff --git a/src/app/pages/map-layers/map/map.component.html b/src/app/pages/map-layers/map/map.component.html
index 301b8abf10f7ccac75a6da1ca3483028967ca96f..551beb762e4093b3382c56d8a0e2fc284cacf229 100644
--- a/src/app/pages/map-layers/map/map.component.html
+++ b/src/app/pages/map-layers/map/map.component.html
@@ -1,41 +1,34 @@
-<div class="row d-flex justify-content-between align-items-center">
-    <nb-card class="col-6" size="large">
-        <nb-card-header>
-          Layers in map
-        </nb-card-header>
-        <nb-card-body>
-          <div leaflet #map 
-          [leafletOptions]="options" 
-          (leafletMapReady)="onMapReady($event)"
-          >
-          </div>
-        </nb-card-body>
+<div class="row ">
+  <div class="col-8">
+    <nb-card size="large">
+      <nb-card-header>
+        Layers in map
+      </nb-card-header>
+      <nb-card-body>
+        <div leaflet #map [leafletOptions]="options" (leafletMapReady)="onMapReady($event)">
+        </div>
+      </nb-card-body>
     </nb-card>
-    <nb-card class="col-6" size="large">
-        <nb-card-header>
-        Available Layers list <button style="float: right" nbButton size="small" status="info" (click)="openGuide()">{{'general.guide'|translate}}</button>
-        </nb-card-header>
-        <nb-card-body>
-                <mat-selection-list (selectionChange)="onChange($event)" [(ngModel)]="selectedLayers" [disabled]="isDisabled">
-                    <mat-list-option *ngFor="let layer of availableLayers;let indexOfelement=index;" (indexOfelement) = "selectedLayerId" [value]="layer">
-                      {{layer}}
-                    </mat-list-option>
-                  </mat-selection-list>
-        </nb-card-body>
-        <nb-card-footer>
-          <nb-card class="row">
-            <nb-card-header>
-              Selected layer informations
-            </nb-card-header>
-            <nb-card-body>
-              {{layerDescr}}
-            </nb-card-body>
-            <nb-card-footer>
-              <button nbButton status="info" [value] = "selectedLayerId" (click)="loadLayer($event)">
-                Load Layer
-              </button>
-          </nb-card-footer>
-        </nb-card>
+  </div>
+
+  <div class="col-4">
+    <nb-card size="large">
+      <nb-card-header>
+        Available Layers list <button style="float: right" nbButton size="small" status="info"
+          (click)="openGuide()">{{'general.guide'|translate}}</button>
+      </nb-card-header>
+      <nb-card-body>
+        <mat-selection-list (selectionChange)="onChange($event)">
+          <mat-list-option *ngFor="let layer of layersByPilot[pilot]" [value]="layer">
+            <p>
+              <nb-icon icon="info" [nbTooltip]="layersByPilot[pilot]"></nb-icon>&nbsp;{{layer}}
+            </p>
+          </mat-list-option>
+        </mat-selection-list>
+      </nb-card-body>
+      <nb-card-footer>
       </nb-card-footer>
     </nb-card>
+  </div>
+
 </div>
\ No newline at end of file
diff --git a/src/app/pages/map-layers/map/map.component.ts b/src/app/pages/map-layers/map/map.component.ts
index 57996028f5deb3376a98034364d8723fa613be76..94bca24809b11cb9f5791f76ae8ccfec85bba52f 100644
--- a/src/app/pages/map-layers/map/map.component.ts
+++ b/src/app/pages/map-layers/map/map.component.ts
@@ -5,6 +5,10 @@ import 'leaflet.heat/dist/leaflet-heat.js';
 import { DashboardPageCrudService } from '../../dashboard-management/services/dashboard-page-crud.service';
 import { MessinaClientService } from '../../messina/service/messina-client.service';
 import Amsterdam_bike from '../../../../assets/map/map-component-maps/amsterdam_bike_request.json';
+import Messina_cycling_path from '../../../../assets/map/map-component-maps/messina_cycling_paths.json';
+import Messina_ATM_Stops from '../../../../assets/map/map-component-maps/atmStops.json';
+import Messina_Cameras from '../../../../assets/map/map-component-maps/cameras.json';
+import Messina_POIs from '../../../../assets/map/map-component-maps/messina_pois.json';
 import Bilbao_air_quality from '../../../../assets/map/map-component-maps/bilbao_air_quality_request.json';
 import Bilbao_bike from '../../../../assets/map/map-component-maps/bilbao_bike_request.json';
 import Bilbao_sound from '../../../../assets/map/map-component-maps/bilbao_sound_request.json';
@@ -20,35 +24,20 @@ import { NbDialogService } from '@nebular/theme';
   templateUrl: './map.component.html',
 })
 export class MapComponent implements OnInit {
-  lat: number=0;
-  long: number=0;
-  addedDiv;
-  pointsFile = '/assets/geojsons/bilbao_wifi_request_edited_for_angular_test.json';
-  isDisabled: boolean = false;
-  selectedLayerId: number;
-  availableLayers: string[] = [];
-  layerDescr: string;
-  option: MatListOption;
-  selectedLayers: string[];
-  public map: L.Map;
-  layerAmsterdam_bike: L.GeoJSON;
-  layerBilbao_air_quality: L.GeoJSON;
-  layerBilbao_bike: L.GeoJSON;
-  // layerBilbao_sound: L.GeoJSON;
-  layerBilbao_sound_heat: L.HeatLayer;
-  layerBilbao_wifi: L.GeoJSON;
-  boundLayer: L.GeoJSON;
-  layers = [];
+  constructor(public dialogService: NbDialogService, private dashboardPageService: DashboardPageCrudService,
+    private configService: ConfigService, private dataStorageService: DatastorageService, private translateService: TranslateService, private messinaClientService: MessinaClientService,) {
+  }
   legend = new (L.Control.extend({
     options: { position: 'bottomright' }
   }));
+
   options = {
     layers: [
       L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { maxZoom: 18, attribution: '...' }),
     ],
     zoom: 9,
-    center: L.latLng({ lat: this.lat, lng: this.long }),
   };
+
   heatOptions = {
     radius: 12,
     max: 1.0,
@@ -57,59 +46,80 @@ export class MapComponent implements OnInit {
     //gradient: { 0.5: 'green', 0.6: 'yellow', 1.0: 'red' },
     minOpacity: 0.7
   }
-  constructor(public dialogService: NbDialogService, private dashboardPageService: DashboardPageCrudService,
-    private configService: ConfigService, private dataStorageService: DatastorageService, private translateService: TranslateService,) {
+  pilot: string;
+
+  layersByPilot: { [key: string]: string[] } = {
+    MESSINA: ["Point of Interests", "ATM Stops", "Messina - Dinnamare", "Messina - Centro", "Messina - Litoranea", "Cameras"],
+    BILBAO: ["Bilbao Air Quality", "Bilbao Bike", "Bilbao Sound", "Bilbao Wifi"],
+    AMSTERDAM: ["Amsterdam Bike"],
+    HELSINKI: [],
+    URBANITE: ["Amsterdam Bike", "Bilbao Air Quality", "Bilbao Bike", "Bilbao Sound", "Bilbao Wifi", "Point of Interests", "ATM Stops", "Messina - Dinnamare", "Messina - Centro", "Messina - Litoranea", "Cameras"],
   }
 
-  ngOnInit(): void {
-    //this.getLayersFromDataStorage();
-    this.layerAmsterdam_bike = this.getLayer('Amsterdam_bike', <any>Amsterdam_bike[0].map);
-    this.layerBilbao_air_quality = this.getLayer('Bilbao_air_quality', <any>Bilbao_air_quality[0].map);
-    this.layerBilbao_bike = this.getLayer('Bilbao_bike', <any>Bilbao_bike[0].map);
-    // this.layerBilbao_sound = this.getLayer('Bilbao_sound', <any>Bilbao_sound[0].map);
-    this.layerBilbao_wifi = this.getLayer('Bilbao_wifi', <any>Bilbao_wifi[0].map);
-    this.layerBilbao_sound_heat = L.heatLayer(this.heatLayerConverter(<any>Bilbao_sound[0].map), this.heatOptions);
+  coordinatesByPilot: { [key: string]: L.LatLngExpression } = {
+    MESSINA: [38.183333, 15.566667],
+    BILBAO: [43.2627100, -2.9252800],
+    AMSTERDAM: [52.3740300, 4.8896900],
+    HELSINKI: [60.1695200, 24.9354500],
+  }
 
-    this.layers.push(this.layerAmsterdam_bike);
-    this.layers.push(this.layerBilbao_air_quality);
-    this.layers.push(this.layerBilbao_bike);
-    // this.layers.push(this.layerBilbao_sound);
-    this.layers.push(this.layerBilbao_sound_heat);
+  geojsonLayerContent: { [key: string]: L.GeoJSON } = {
+    "Point of interests": <L.GeoJSON>this.getLayer("Point of interests", <any>Messina_POIs['results']['features']),
+    "ATM Stops": <L.GeoJSON>this.getLayer("ATM Stops", <any>Messina_ATM_Stops['results']['features']),
+    "Cameras": <L.GeoJSON>this.getLayer("Cameras", <any>Messina_Cameras['results']['features']),
+    //"Messina - Dinnamare": <any>this.messinaClientService.getCyclingPaths(), FUTURE IMPLEMENTATION
+    "Messina - Dinnamare": <L.GeoJSON>this.getLayer("Messina - Dinnamare", <any>Messina_cycling_path[0].location),
+    "Messina - Centro": <L.GeoJSON>this.getLayer("Messina - Centro", <any>Messina_cycling_path[1].location),
+    "Messina - Litoranea": <L.GeoJSON>this.getLayer("Messina - Litoranea", <any>Messina_cycling_path[2].location),
+    "Bilbao Air Quality": <L.GeoJSON>this.getLayer("Bilbao Air Quality", <any>Bilbao_air_quality[0].map),
+    "Bilbao Bike": <L.GeoJSON>this.getLayer("Bilbao Bike", <any>Bilbao_bike[0].map),
+    "Bilbao Wifi": <L.GeoJSON>this.getLayer("Bilbao Wifi", <any>Bilbao_wifi[0].map),
+    "Amsterdam Bike": <L.GeoJSON>this.getLayer("Amsterdam Bike", <any>Amsterdam_bike[0].map),
+  };
 
-    let pilot = this.configService.getSettings("default_pilot");
-    let bilbao: string[] = ["Bilbao Air Quality", "Bilbao Bike", "Bilbao Sound", "Bilbao Wifi"];
+  heatlayerLayerContent: { [key: string]: L.HeatLayer } = {
+    "Bilbao Sound": <L.HeatLayer>L.heatLayer(this.heatLayerConverter(<any>Bilbao_sound[0].map), this.heatOptions),
+  };
 
-    switch(pilot){
-      case "MESSINA":
-        this.boundLayer = this.layerBilbao_air_quality;
-          for (let i = 0; i < bilbao.length; i++){
-            this.availableLayers.push(bilbao[i]);
-          }
-        break;
-      case "HELSINKI":
-        this.boundLayer = this.layerBilbao_air_quality;
-        break;
-        case "BILBAO":
-          this.boundLayer = this.layerBilbao_air_quality;
-          for (let i = 0; i < bilbao.length; i++){
-            this.availableLayers.push(bilbao[i]);
-          }
-        break;
-        case "AMSTERDAM":
-          this.boundLayer = this.layerAmsterdam_bike;
-          this.availableLayers.push("Amsterdam Bike");
-        break;
-    }
-     
+  public map: L.Map;
 
+  ngOnInit(): void {
+    this.pilot = this.configService.getSettings("default_pilot");
+  }
+
+  onChange(event: any) {
+    let clickedLayerName = event.option.value;
+    let geojsonLayer = <L.GeoJSON>this.geojsonLayerContent[clickedLayerName];
+    let heatLayer = <L.HeatLayer>this.heatlayerLayerContent[clickedLayerName];
+
+    if (event.option.selected === true) {
+      console.log("CHARGE LAYER-> " + clickedLayerName)
+      if (clickedLayerName !== "Bilbao Sound") {
+        this.map.addLayer(geojsonLayer);
+        this.map.fitBounds(geojsonLayer.getBounds(), {
+          padding: [50, 50]
+        });
+      } else {
+        this.map.addLayer(heatLayer);
+      }
+    }
+    else {
+      console.log("DECHARGE LAYER-> " + clickedLayerName)
+      if (clickedLayerName !== "Bilbao Sound") {
+        this.map = this.map.removeLayer(geojsonLayer);
+      } else {
+        this.map = this.map.removeLayer(heatLayer);
+      }
+    }
 
   }
+
   /**
    * This transform geoJSON into array managed by leaflet for heatmap
    * @param geoJson geoJSON 
    * @returns Points with intensity for leflet heatmap
    */
-   private heatLayerConverter(geoJson) {
+  private heatLayerConverter(geoJson) {
     var result = [];
     for (let r in geoJson['features']) {
       let coord = geoJson['features'][r].geometry.coordinates;
@@ -118,19 +128,17 @@ export class MapComponent implements OnInit {
     // console.log("Points result.length =>" + result.length + "  result: " + result);
     return result;
   }
+
   onMapReady(map: L.Map) {
     this.map = map;
     setTimeout(() => {
       this.map.invalidateSize();
-      this.map.fitBounds(this.boundLayer.getBounds(), {
-        padding: [50, 50]
-      });
+      this.map.setView(this.coordinatesByPilot[this.configService.getSettings("default_pilot")], 13.5);
     }, 50);
 
   }
 
   public getLayer(title, l): L.GeoJSON {
-
     let layer = L.geoJSON(l,
       {
         onEachFeature: (feature, layer) => {
@@ -155,148 +163,6 @@ export class MapComponent implements OnInit {
     return layer;
   }
 
-  onChange(event: any) {
-    this.option = event.option;
-    this.optionSettings();
-    // this.log("#1", event);
-    if (event.option.selected === true) {
-      // this.log("#2", event);
-      this.selectedLayerId = event.option.value;
-      // this.log("#OptionValue", null);
-      // this.log("#SelectedLayerIdValue", null);
-      // this.log("#3", event);
-      event.option.selected = false;
-      //this.layerDescr = this.getLayerDescription(event.option.value);
-      this.layerDescr = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed nec enim quis massa vehicula sollicitudin. Praesent luctus mauris felis, sed condimentum purus luctus in.";
-
-    }
-    if (event.option.selected === false) {
-      // console.log("UNCHECK");
-      // console.log("selectedLayerId VALUE");
-      // console.log(event.option.value)
-      this.removeLayer(event.option.value);
-      this.log("#4", event);
-    }
-    this.log("#5", event);
-  }
-
-  loadLayer(event: any) {
-    this.option.selected = true;
-    switch (event.target.value) {
-      case "Amsterdam Bike":
-        this.map.addLayer(this.layerAmsterdam_bike);
-        break;
-      case "Bilbao Air Quality":
-        this.map.addLayer(this.layerBilbao_air_quality);
-        break;
-      case "Bilbao Bike":
-        this.map.addLayer(this.layerBilbao_bike);
-        break;
-      case "Bilbao Sound":
-        this.map.addLayer(this.layerBilbao_sound_heat);
-        this.addedDiv = this.legend.onAdd = (map) => {
-          var div = L.DomUtil.create('div', 'info legend'),
-            grades = [0.0, 0.5, 1.0],
-            labels = ["Low level", "Medium level", "High level "];
-    
-          div.innerHTML = '<div><b>Legend</b></div>';
-          for (var i = 0; i < grades.length; i++) {
-            div.innerHTML += '<i style="background: ' + this.getLegendColor(grades[i]) + '">'
-              + '&nbsp;&nbsp;&nbsp;&nbsp;' + '</i> ' + labels[i] + (i + 1 < grades.length ? '</br>' : '');
-          }
-          this.addedDiv = div;
-          return div;
-        };
-        this.legend.addTo(this.map);
-        break;
-      case "Bilbao Wifi":
-        this.map.addLayer(this.layerBilbao_wifi);
-        break;
-    }
-  }
-
-  removeLayer(selectedLayerId: string) {
-    switch (selectedLayerId) {
-      case "Amsterdam Bike":
-        this.map.removeLayer(this.layerAmsterdam_bike);
-        break;
-      case "Bilbao Air Quality":
-        this.map.removeLayer(this.layerBilbao_air_quality);
-        break;
-      case "Bilbao Bike":
-        this.map.removeLayer(this.layerBilbao_bike);
-        break;
-      case "Bilbao Sound":
-        this.map.removeLayer(this.layerBilbao_sound_heat);
-        var div = L.DomUtil.remove(this.addedDiv);
-        break;
-      case "Bilbao Wifi":
-        this.map.removeLayer(this.layerBilbao_wifi);
-        break;
-    }
-    this.layerDescr = "";
-  }
-
-  getLayerDescription(selectedLayerId: string) : string {
-    switch (selectedLayerId) {
-      case "Amsterdam Bike":
-        // console.log("Amsterdam_bike[0].description");
-        // console.log(Amsterdam_bike[0].description);
-        return Amsterdam_bike[0].description;
-      case "Bilbao Air Quality":
-        return Bilbao_air_quality[0].description;;
-      case "Bilbao Bike":
-        return Bilbao_bike[0].description;
-      case "Bilbao Sound":
-        return Bilbao_sound[0].description;
-      case "Bilbao Wifi":
-        return Bilbao_wifi[0].description;;
-    }
-  }
-
-
-  optionSettings() {
-    this.option.color = 'primary';
-  }
-
-  log(step: string, event: any) {
-    switch (step) {
-
-      case "#1":
-        console.log("#1 event.option.selected VALUE");
-        console.log(event.option.selected);
-        break;
-      case "#2":
-        console.log("#2 event.option.selected VALUE");
-        console.log(event.option.selected);
-        break;
-      case "#3":
-        console.log("#3 event.option.selected VALUE");
-        console.log(event.option.selected);
-        break;
-      case "#4":
-        console.log("#4 event.option.selected VALUE");
-        console.log(event.option.selected);
-        break;
-      case "#5":
-        console.log("#5 event.option.selected VALUE");
-        console.log(event.option.selected);
-        break;
-      case "#6":
-        break;
-      case "#OptionValue":
-        console.log("OPTION VALUE");
-        console.log(this.option);
-        break;
-      case "#SelectedLayerIdValue":
-        console.log("selectedLayerId VALUE");
-        console.log(this.selectedLayerId);
-        break;
-
-    }
-
-  }
-
   getLegendColor(v: number) {
     let color = 'green';
     if (v == 0.0) {
@@ -309,17 +175,91 @@ export class MapComponent implements OnInit {
     return color;
   }
 
-  getLayersFromDataStorage(){
-    this.dataStorageService.getMapLayers().subscribe(res => {
-      console.log("DATA STORAGE RESULTS");
-      console.log(res);
-    })
+  openGuide() {
+    const dialogRef = this.dialogService
+      .open(DashboardGuideComponent,
+        { context: { info: "Map Layers Guide" } });
   }
 
+  private getIcon(type): string {
+    switch (type) {
+      case "Retail_Services":
+        return "store";
+      case "Restaurant":
+        return "utensils";
+      case "Medical_Facility":
+        return "heartbeat";
+      case "School":
+        return "school";
+      case "Sport_Recreation":
+        return "running";
+      case "City_Town_Center":
+        return "university";
+      case "Hotel":
+        return "h-square";
+      case "Enclosed_Carpark":
+        return "parking";
+      case "Automobile_Facility":
+        return "car-side";
+      case "Bus_Station":
+        return "bus";
+      case "Religious_Facility":
+        return "pray";
+      case "Open_Carpark":
+        return "parking";
+      case "Forest":
+        return "tree";
+      case "Cultural_Buildings":
+        return "building";
+      case "River":
+        return "water";
+      case "Rail_Station":
+        return "train";
+      case "Ferry":
+        return "ship";
+      case "Lake":
+        return "water";
+      case "Public_Buildings":
+        return "building";
+      case "WaterElements":
+        return "water";
+      case "Regio Nat State Park":
+        return "tree";
+      case "lndustrial_Area":
+        return "industry";
+      case "Industry":
+        return "industry";
+      case "Sand_Area":
+        return "umbrella-beach";
+      case "Tunnel":
+        return "archway";
+      case "Rail":
+        return "train";
+    }
+    return "map-marker"
+  }
+
+  buildGeoJSON(data: any) {
+    let result = [];
+    var geojsonModel = {
+      "type": "Feature",
+      "geometry": {
+        "type": "Point",
+        "coordinates": []
+      },
+      "properties": {
+      }
+    };
+    console.log("HERE");
+    console.log(Object.keys(data));
+    console.log(data['results'])
+    console.log(Object.keys(data['results']));
+    console.log(data['results']['features'])
+    console.log(Object.keys(data['results']['features']));
+    for (let feature in data['results']) {
+      console.log("R is");
+      console.log(feature);
+    }
 
-  openGuide(){
-    const dialogRef = this.dialogService
-    .open(DashboardGuideComponent,
-      { context: { info: "Map Layers Guide"} });
   }
 }
\ No newline at end of file
diff --git a/src/app/pages/messina/service/messina-client.service.ts b/src/app/pages/messina/service/messina-client.service.ts
index f446a45a5dbdb60e334e97fadf6db280cd656549..21f6553b8b1dbf6883e8af685625fd9649c7b497 100644
--- a/src/app/pages/messina/service/messina-client.service.ts
+++ b/src/app/pages/messina/service/messina-client.service.ts
@@ -40,11 +40,22 @@ export class MessinaClientService {
   }
 
   getPOI(page: number = 0, pageSize: number = 40000): Observable<any> {
-    return this.http.get<any>(`${this.apiURL}/api/v1/data/POIs?page=${page}&pageSize=${pageSize}&format=geojson&token=${this.token}`);
+    return this.http.get<any>(`${this.apiURL}/api/v2/static/collection/POIs?page=${page}&pageSize=${pageSize}&format=geojson&token=${this.token}`);
   }
+  getDataStoragePOIs(): Observable<any> {
+    return this.http.get<any>(`https://messina.urbanite.esilab.org/data/getTData/pointOfInterest/messina?limit=1000`);
 
+  }
   getStops(page: number = 0, pageSize: number = 40000): Observable<any> {
-    return this.http.get<any>(`${this.apiURL}/api/v1/data/atmStops?page=${page}&pageSize=${pageSize}&format=geojson&token=${this.token}&filter=${JSON.stringify({ "mainStop": true })}`);
+    return this.http.get<any>(`${this.apiURL}/api/v2/static/collection/atmStops?page=${page}&pageSize=${pageSize}&format=geojson&token=${this.token}&filter=${JSON.stringify({ "mainStop": true })}`);
+  }
+
+  getCameras(page: number = 0, pageSize: number = 40000): Observable<any> {
+    return this.http.get<any>(`${this.apiURL}/api/v2/static/collection/cameras?page=${page}&pageSize=${pageSize}&format=geojson&token=${this.token}`);
+  }
+
+  getCyclingPaths(page: number = 0, pageSize: number = 40000): Observable<any> {
+    return this.http.get<any>(`${this.apiURL}/api/v2/static/collection/cyclingPaths?page=${page}&pageSize=${pageSize}&format=json&token=${this.token}`);
   }
 
   getBatchData(date: string, roads:string=undefined): Observable<any>{
@@ -52,12 +63,10 @@ export class MessinaClientService {
       // roads="Messina-Boccetta";
       roads="A20 - Messina-Boccetta";
     }
-    // https://urbanite-node1.comune.messina.it/api/v1/trafficBatch?token=mcOUnnIyupQJzbitPX7Q2MnyqrVQUkmo&date=2021-06-08T00:00:00Z&roads=A20 - Messina-Boccetta
     return this.http.get<any>(`${this.apiURL}/api/v1/trafficBatch?date=${date}&roads=${roads}&token=${this.token}`);
   }
 
   getRoads(): Observable<any>{
-    // https://urbanite-node1.comune.messina.it/api/v1/roads?token=mcOUnnIyupQJzbitPX7Q2MnyqrVQUkmo
     return this.http.get<any>(`${this.apiURL}/api/v1/roads?token=${this.token}`);
   }
 
diff --git a/src/assets/map/map-component-maps/atmStops.json b/src/assets/map/map-component-maps/atmStops.json
new file mode 100644
index 0000000000000000000000000000000000000000..a858ff6a6b1f714bd89cad04be7b73839fd5454a
--- /dev/null
+++ b/src/assets/map/map-component-maps/atmStops.json
@@ -0,0 +1,22977 @@
+{
+    "results": {
+        "type": "FeatureCollection",
+        "features": [
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Prenatal ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54971766,
+                        38.18187538
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giardini di Giano",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6335349381184,
+                        38.2713716441232
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3 Store",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5466943098152,
+                        38.1799339237369
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3 Store",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516782826138,
+                        38.1818325667762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3 Store",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5505429156267,
+                        38.1869954291839
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3 Store",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544284760692,
+                        38.191530005976
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3 Store",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554410806361,
+                        38.1949477155014
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3d ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512932208003,
+                        38.1805272271163
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza Fulci",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539182874668,
+                        38.1887835893449
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "A. Celona",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524861667679,
+                        38.1820762601868
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "A.O. Papardo",
+                    "category": "Hospital/Polyclinic",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.592957765961,
+                        38.2633052293683
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "A.P.T. Messina ",
+                    "category": "Tourist Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5586135119556,
+                        38.1861354913684
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "A.S.D. Tennis Club Bauso",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4481587252852,
+                        38.2414396309166
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Abbigliamento Fiorentino ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524965408549,
+                        38.1853551492964
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Abbigliamento Nicodemo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5460939160724,
+                        38.1812136621636
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Acqualadrone",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5520604732944,
+                        38.2969276708949
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Acquamarina ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552926936728,
+                        38.2053790858169
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Acquario Comunale",
+                    "category": "Tourist Attraction",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554453432538,
+                        38.1985886286746
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ad",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517818551987,
+                        38.2005214435475
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Advanting Trade",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529526106259,
+                        38.2054211906943
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Al Borgo dei Pini",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6360043694971,
+                        38.2662969689359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Al Padrino",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539019421103,
+                        38.1807073668868
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Al Paradiso dei Bimbi",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.546745625659,
+                        38.1820204247794
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Al Piccolo Caffè",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517387885186,
+                        38.1932128254563
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Al Platano",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5702188753744,
+                        38.2351475543489
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Albergo Empedocle ",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5455102033274,
+                        38.1918551614093
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alessandra ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524390086402,
+                        38.1875591013491
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alessendrino",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538366510958,
+                        38.2011168492169
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alibi Dimensione Uomo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5537743049312,
+                        38.1846603729411
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5251106789125,
+                        38.1411837665366
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5465494608309,
+                        38.1780559110513
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5435597329361,
+                        38.1917440748456
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5409904057131,
+                        38.1931075690735
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5442641158817,
+                        38.1939225982961
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5371683859018,
+                        38.1956877693114
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551098384682,
+                        38.2056881929235
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5515830288926,
+                        38.2062284948731
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari di Signorino Giuseppe",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5217098946609,
+                        38.1894366616156
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alis",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419994655876,
+                        38.1716099140242
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Allis Contesse ",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5334442742056,
+                        38.1576468649162
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alta Moda ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547717413518,
+                        38.1838893112717
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Altaquota",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510165858692,
+                        38.1919428958894
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Altolia",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4461964640363,
+                        38.0765034549752
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Altolia ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4456297602707,
+                        38.0753005670324
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alvaro Dr. Andrea Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55490557053,
+                        38.2036049728577
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ambra",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5425130175652,
+                        38.1721781138037
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "American Bar",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477623698164,
+                        38.1897294519786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Americars di J&D S.r.l.",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5280488085266,
+                        38.1512988979652
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Amici Miei",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5501862908253,
+                        38.1865629141079
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Amico Fresco",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5192335136083,
+                        38.1401536647392
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Amiva",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538010131105,
+                        38.1958805326802
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ammendolia Letterio Francesco ",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554004226767,
+                        38.1872310720776
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Anna Dieli",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5527906910179,
+                        38.1861202551204
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Annibaie Maria di Francia",
+                    "category": "Theatre",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5475674416646,
+                        38.1865336712742
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Antemasi",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525562011564,
+                        38.1872617545309
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Antica Pasticceria lrrera",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533389461478,
+                        38.1857939350963
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Antica Pasticceria lrrera",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526800982509,
+                        38.1864706136219
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Antonveneta Gruppo Montepaschi",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5515266705274,
+                        38.1828534967344
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Apollo",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526229742802,
+                        38.1896852098291
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Apollo 11 ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511925816816,
+                        38.1820822058495
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Arcobaleno ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5502245317897,
+                        38.1865291049722
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "ARD discount",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5588665375513,
+                        38.1814593256121
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "ARD discount",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5500079745182,
+                        38.1939354711069
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "ARD discount",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536304914419,
+                        38.2059371808099
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Area di Servizio",
+                    "category": "Rest Area",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5442968291063,
+                        38.2073979771306
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Area di Servizio",
+                    "category": "Rest Area",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4907389989614,
+                        38.2389199610712
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Arena Giardino Corallo",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5562337432492,
+                        38.201789830203
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Arena Giovanni ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5465812238971,
+                        38.20843430262
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "As.T.B.",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5495435249347,
+                        38.1980098560935
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Associazione A.I.K.K. Karate",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5466060223692,
+                        38.1995465659986
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Auto Bite",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5489027172947,
+                        38.1743132432748
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Auto Iberia S.r.1. - Pa/Vs",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541065688441,
+                        38.1622948506589
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Auto Iberia S.r.l.",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5214586807068,
+                        38.1381557781827
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Autogrill",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5159624859143,
+                        38.1425835088028
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Autolinee Messina",
+                    "category": "Bus Station",
+                    "type": "Bus_Station"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5578235945767,
+                        38.1848302565281
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Autorimessa Cairoli",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5440005036989,
+                        38.1704436853147
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Autorimessa Primavera",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482985442442,
+                        38.190612648639
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Autosport Salemme S.r.l.",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419638168944,
+                        38.1635665988556
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Avis",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5549094028623,
+                        38.1961756153885
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Azarian",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477601127045,
+                        38.1918936754535
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "B & B Food",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550458206234,
+                        38.1898574857585
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "B San Gabriel",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493063922016,
+                        38.1825962009605
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "B Vaquero",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492287899484,
+                        38.180282656471
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "B. V. A. Bettrodomestici",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5216556384307,
+                        38.1404208904123
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "B. V. A. Bettrodomestici",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512142426258,
+                        38.1821262915977
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Babilonia",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482966386319,
+                        38.1794146025558
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Baciamo le Mani",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532518075978,
+                        38.1915414966224
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "BANCA AGRICOLA POP. DI RAGUSA",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5531406368464,
+                        38.1903713899181
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Carige",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5508305372358,
+                        38.1829042221943
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Carige",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554666906689,
+                        38.1873253493032
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca D'ttalia",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556967154158,
+                        38.1869265095947
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca FIDEURAM",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5553045088471,
+                        38.1856261906828
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Nuova",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547341871375,
+                        38.1790292733009
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare del Mezzogiomo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5420935063143,
+                        38.1726659790905
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare del Mezzogiomo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5465519782818,
+                        38.1818495798688
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare del Mezzogiomo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5499923628517,
+                        38.1889591589787
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare Dell'Emilia Romagna",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5462314180989,
+                        38.1903280771218
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare Di Lodi",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.539643329148,
+                        38.1694746520219
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare Di Lodi",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5530663877299,
+                        38.1854817700986
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Sviluppo",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504873389647,
+                        38.1840122242489
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco di Sicilia",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.559410188674,
+                        38.2122220165762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco di Sicilia",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6058895397236,
+                        38.2590253291493
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco Popolare Siciliano",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553031940994,
+                        38.1764356090515
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco Popolare Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516848897964,
+                        38.1818845791648
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco Popolare Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5468710775029,
+                        38.1984621898031
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco Popolare Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558903766268,
+                        38.2057128375153
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco Popolare Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6167794643557,
+                        38.261189617438
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bandiera Dr. AJessandro",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5568652312853,
+                        38.2062182222505
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5367079282311,
+                        38.1957705845125
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Aiello",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523709382321,
+                        38.1976882020842
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Apollo ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5528199149445,
+                        38.1899500289597
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Astoria",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5262060641032,
+                        38.1724167601882
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Conca dOro",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5503112763725,
+                        38.2301850695302
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar De Luca",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.485988086005,
+                        38.0689639234672
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar del Popolo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485694740583,
+                        38.1860825192832
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Donato",
+                    "category": "Nightlife",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6403832579749,
+                        38.2651858779622
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Gelateria Fiumara",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4447538284206,
+                        38.2421254348945
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar le Sirene ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5988860758839,
+                        38.2554287597588
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Maracana'",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541655656883,
+                        38.1718672147009
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Mento Rossana Stephanie",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5469121176723,
+                        38.1931312699101
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Pasticceria Dolci Idee ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5142560081716,
+                        38.1193638319547
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Pasticceria Gelateria Sheridan",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560981199347,
+                        38.2191680592341
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Pasticceria Nuovo Millenium ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5829856175097,
+                        38.2483957118478
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Solaris",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5334272860072,
+                        38.1575128325658
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar SpartĂ ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5458507855889,
+                        38.1936251281946
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar SpartĂ ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4909743385687,
+                        38.2504149297725
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Sport ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4968486720616,
+                        38.0864263385842
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Barai Platano",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5632716934881,
+                        38.2215458081228
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Barchiaia",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5432234906617,
+                        38.1903280034411
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bardelle Stretto",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5595785261628,
+                        38.1866208355078
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Barfocacceria Grotte di Cazzolo M.",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5642105786969,
+                        38.2237764183372
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Barresi Dr. Giovanni",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526228528406,
+                        38.2008812516275
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bcc Antonello da Messina",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552614655777,
+                        38.1913255909562
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bcc Antonello da Messina",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512787260619,
+                        38.1939084267527
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bellavista",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6277965817665,
+                        38.2610702969781
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bellino ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5444123529331,
+                        38.1728427615159
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bena",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5414812130964,
+                        38.1714015639825
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bignoli Felice",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547596585054,
+                        38.1882442022767
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bio Baby di Toscano Ravia",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406151954192,
+                        38.1711785921888
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bistrot 502",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6380727964929,
+                        38.2658818079142
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bite",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523645935031,
+                        38.1817588033763
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Blue Gum",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525567226608,
+                        38.1842628165249
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bn Petroli Ganzini",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6044305617081,
+                        38.2581607922606
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bnl",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548703926604,
+                        38.1957795727217
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bnl",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556485422672,
+                        38.2197977317925
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Boccetta ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5474198377785,
+                        38.1982018502219
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Body and Mind",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5476261712437,
+                        38.181639679275
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Body Elegance",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443432635562,
+                        38.1801848367555
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Body Line",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5569935905803,
+                        38.2051002178877
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bond 10",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5561061617742,
+                        38.1839035491667
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bordonaro ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5188796211911,
+                        38.1742928247237
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bordonaro ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5148673987422,
+                        38.1753146930757
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bordonaro ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.513597857128,
+                        38.1762979436659
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bouchon",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553468559125,
+                        38.1943595149675
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Boutigue Bretella",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5513858697304,
+                        38.1829667975853
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Brancate-Romanini ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5502007803427,
+                        38.2067258492762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Brasserie dell'Ancora",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5588453531614,
+                        38.2104979803582
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Briga",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4719187804633,
+                        38.077596137138
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Briga",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4718181746608,
+                        38.0780690562637
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Briga Marina",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4939064163461,
+                        38.0809351855615
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Briga Marina ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4928471951592,
+                        38.0799939696833
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "BruschettĂ  Felice",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5612595480617,
+                        38.2156774556369
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "BSB Town House Messina",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548495524087,
+                        38.1857750092168
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bulli e Pupe",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5596909381218,
+                        38.2129070889746
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Buon Mercato ",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5397764059629,
+                        38.1634604077936
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "C.i.m.",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539583620458,
+                        38.1847771928989
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "C.r.a.t.",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5388044536322,
+                        38.1611007007166
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Caffè Axel",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524081245178,
+                        38.1860804795376
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Caffè dello Stretto ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533000986171,
+                        38.2052068932121
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Caffè Santoro ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553766002685,
+                        38.1861658015073
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Caffè surla Ville di Finanze L.",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492843502053,
+                        38.2049641826242
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cairoli",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546478266478,
+                        38.1864138395709
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Calascione Carmelo Pasticceria",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.557968313297,
+                        38.2116084830246
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Calasole ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6415601010971,
+                        38.2717831276252
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Calogero Domenico",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510466773097,
+                        38.1822094785701
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cama Dr. Francesco",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5680493205088,
+                        38.2312047797323
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Camaro",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5220649634003,
+                        38.1892773792084
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Camaro",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5206197167407,
+                        38.1893408151126
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cambria Girolamo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5402057123664,
+                        38.1704629311664
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Camper",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5528352713475,
+                        38.1845760095023
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Campetti lgnatianum",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5499504157809,
+                        38.2055890794714
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Canale Ovest",
+                    "category": "Rest Area",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.502414330871,
+                        38.1019847427743
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cannistraci Giuseppa",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553058394213,
+                        38.1832175338175
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cannizzaro",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5450821218073,
+                        38.190954477495
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Capitol",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509114155014,
+                        38.1829165961393
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Capo Peloro Resort",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6276284494795,
+                        38.2610955004102
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappella di S. Eustochia Esmeralda",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512245133062,
+                        38.1956695503901
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappellani Giomi",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5570083355118,
+                        38.2123157400726
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappellini",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54520358432,
+                        38.1980745241078
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappuccetto Rosso",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529271268741,
+                        38.1836587631903
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappuccetto Rosso",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559896550809,
+                        38.2062031292259
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappuccini",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5463478646227,
+                        38.2062319896638
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Caprice",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551169930796,
+                        38.1847001744992
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri LocalitĂ  Tremestieri",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5218729905202,
+                        38.1391623551861
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Piazza Argo",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5328814698392,
+                        38.2150368299359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via Bixio",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5514147338533,
+                        38.1825840683723
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via Concezione",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553733638127,
+                        38.1985952583778
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via Dir. Artiglieria",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5365505926067,
+                        38.1870369506106
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via G. e M. in S. Leone",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551900949708,
+                        38.2014346777909
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via la Farina",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5515492111801,
+                        38.1783851818243
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via Lago Grande",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6245564295343,
+                        38.2607072356749
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via Nazionale",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4790463752928,
+                        38.0627027857628
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cardullo A.",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5562809829542,
+                        38.186049608906
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carrefour",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477235352688,
+                        38.1745266528712
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cartoleria Prinzi",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5494141006892,
+                        38.1807653524254
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Cura Carmona",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5459721781806,
+                        38.1933008117555
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Cura S. Rita",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566802876928,
+                        38.2059534501948
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Cura Villa Salus",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5456402112856,
+                        38.199301132884
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Kiposo Uesire",
+                    "category": "Medical service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512628545939,
+                        39.9924097586637
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Riposo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5440416065859,
+                        38.1861463134435
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Riposo la Rondine",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5433477024891,
+                        38.1893619269603
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa Musicale S. Filippo ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554692495251,
+                        38.1831228449238
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "CassarĂ  Graziella",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5964151483009,
+                        38.2535428381563
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Castanea delle Furie",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.518554890534,
+                        38.2609021534854
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Castanea delle Furie",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5195991075976,
+                        38.2640601599881
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Castiglione Dr. Nunzio",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525340689431,
+                        38.1955337263825
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Catanesi Dr. Giulia",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532901372381,
+                        38.1968198097773
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cattedrale Archimandritato",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5489556228127,
+                        38.1911035492691
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cattedrale di Messina",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523232808543,
+                        38.192187923404
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Catullo ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555755979508,
+                        38.1824055962988
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cavallotti ",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5577507266821,
+                        38.1866802632922
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Celona",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5451494853626,
+                        38.1980902655588
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centrale",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510820727564,
+                        38.1876147324527
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centrale",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545466023451,
+                        38.1923062841928
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro Danza Maracaibo",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5423664483726,
+                        38.1618650853778
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro di Formazione Sportiva Asd",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5494386838558,
+                        38.198659136197
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro Erboristico AJoe",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493774974586,
+                        38.1836441622515
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro Odontostomatologico Life",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4951825860539,
+                        38.0986921521312
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro Riparazioni Italcar Sri",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.523012173133,
+                        38.1426864229126
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro Riparazioni ltalcar",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5230473800539,
+                        38.1427905498046
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "chicco ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516120153816,
+                        38.1867985005678
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa Cristiana Avventista",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5507192956656,
+                        38.1945245915964
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa del Santissimo Rosario",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5195304794897,
+                        38.2628202810253
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa della Santissima Annunziata",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5543950425395,
+                        38.1911899696445
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa delle Barette",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504222923313,
+                        38.1937404790857
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa di S. Matteo",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5452549021597,
+                        38.2121307845423
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa di Santa Maria AJemanna",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551179040155,
+                        38.1882453924598
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa di Santa Maria della Valle",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.512613304871,
+                        38.2127047815008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa Evangelica Valdese",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5540911401472,
+                        38.1958499012562
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa Maria SS. dell'Incoronata ",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5216700149794,
+                        38.1900882426924
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa S. Teresa del Bambino GesĂą",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5431692975333,
+                        38.1884924000202
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa San Giacomo",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5486579914027,
+                        38.1776189291623
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa Santa Maria delle Grazie",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4789327105042,
+                        38.2712500058327
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa SS. Cosma e Damiano",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5378728150675,
+                        38.1740247562396
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chirico Abbigliamento",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555569047206,
+                        38.1874257355649
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chirico Boutique Sri",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5552129447156,
+                        38.1870372636897
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cicala Beach",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5613592831471,
+                        38.2154420050655
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cimitero ",
+                    "category": "Cemetery",
+                    "type": "Others"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6261345671609,
+                        38.2691047314453
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cimitero di Pace ",
+                    "category": "Cemetery",
+                    "type": "Others"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5731281142122,
+                        38.2392297464589
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cimitero Monumentale di Messina",
+                    "category": "Cemetery",
+                    "type": "Others"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5427844887214,
+                        38.1749004189601
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cineauditorium Fasola",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532886305403,
+                        38.1895663664602
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cinema Arena Savio ",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485272029042,
+                        38.1917123287889
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Clayeux",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523962319241,
+                        38.1820718408968
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Coin",
+                    "category": "Department Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506423229032,
+                        38.1821426105435
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Coin ",
+                    "category": "Department Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5540295160179,
+                        38.1848864869062
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Colavita Dr. Nazareno",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559405914471,
+                        38.2062138959805
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Collereale",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5452909828118,
+                        38.1796444613483
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Colosi ",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5471317392327,
+                        38.1821201954538
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Comode",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5520458405254,
+                        38.1825400359334
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Compass",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548089304593,
+                        38.1951784975917
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Conad",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.530077887607,
+                        38.1550590460485
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Conbipel",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5233502746331,
+                        38.1435906802547
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Conservatorio Musica",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5407671729016,
+                        38.1669098177471
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Consolato Generale Onorario lslanda",
+                    "category": "Embassy",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5595884312741,
+                        38.1866328776918
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Consolato Onorario Finlandia",
+                    "category": "Embassy",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551245001263,
+                        38.1984148307115
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Consolato Onorario Francia",
+                    "category": "Embassy",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5549081497133,
+                        38.1903526667923
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Consolato Onorario Germania",
+                    "category": "Embassy",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5471861110985,
+                        38.1917880272201
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Consolato Onorario Norvegia",
+                    "category": "Embassy",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556642409595,
+                        38.189106644212
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Conti Giuseppe",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5318214759974,
+                        38.1680955611957
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Contrada Sperone",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5930232415478,
+                        38.2643001887955
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Copacabana",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523048296932,
+                        38.2063538291681
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Coriandoli ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6023394288308,
+                        38.2566825068718
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Corpea Fitness Club",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5452327091522,
+                        38.1794172692218
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Costa",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558426869169,
+                        38.207403018063
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Costa Anna",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5481179676787,
+                        38.2078636980336
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Costume",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485170310646,
+                        38.1792187033708
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credem",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547855353433,
+                        38.1834691033218
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credem",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519098274912,
+                        38.183879926084
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credem",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5490278467778,
+                        38.204511142745
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credito Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5552480308125,
+                        38.1852930441601
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credito Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554177142055,
+                        38.2002355600868
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credito Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5585369825917,
+                        38.2096308433343
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cristo Re",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549348102946,
+                        38.1956797661971
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cumia lnferiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5004320863379,
+                        38.1744544824505
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cumia lnferiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5001972317193,
+                        38.1747128714841
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cumia Superiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4964957024995,
+                        38.1736331159982
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cuore di GesĂą ",
+                    "category": "CM Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5436623870565,
+                        38.2104129389077
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cuore Immacolato di Maria",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5650668844827,
+                        38.2260876143354
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Curcio Massimo ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536690511361,
+                        38.2049297180117
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Curcuraci",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5646159372244,
+                        38.2630104995655
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Curcuraci ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.566525160589,
+                        38.2580175447644
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Curro Letteria",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522142830946,
+                        38.197383576355
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cus Messina",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5579201510636,
+                        38.2114992960798
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cwikla Maria",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4453539624077,
+                        38.2427420213901
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "D. Ssa Reres",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554014188839,
+                        38.2045329663771
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Da Alfredo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566052446954,
+                        38.1863990027502
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Da Caterina",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4783917875662,
+                        38.2715313698028
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Da Manuel Bar Trattoria",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5499815531838,
+                        38.1902656458402
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Da Vai",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5549845864965,
+                        38.1841662097728
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dainotti Dr. Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545403505743,
+                        38.2005913284339
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Danza Sportiva Corazon Latino",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5713843950315,
+                        38.2359537297761
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Darone",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4469308330378,
+                        38.2416188152564
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "De Maggio Dr. Matteo Maria",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538396482604,
+                        38.1834131191984
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dei Mille",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512017884675,
+                        38.1839186001706
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Del Popolo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482636709561,
+                        38.1863369985341
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Del Sud",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542367717856,
+                        38.1895028257344
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Del Villaggio Romeo",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498766594971,
+                        38.1793370217857
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Delizie Messinesi",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5561438983841,
+                        38.213478282408
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dello Stretto Palace",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550431312503,
+                        38.1959393247732
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dentista",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556435283071,
+                        38.1870722653588
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Desiderio",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522659318493,
+                        38.1774176796005
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Desiderio",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5552189940551,
+                        38.2063274786889
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Desirè",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5478669441664,
+                        38.1795275533384
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Despar",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550178398686,
+                        38.2066447726847
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Diagnostica dello Stretto Sri ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551320205603,
+                        38.2059513624502
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dipartimento di Ingegneria ",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5940984837591,
+                        38.2586472012681
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dna",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5476076012259,
+                        38.1743901586234
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dolci Tentazioni",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550346095509,
+                        38.1936371588676
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Don Bosco",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5487821686079,
+                        38.1907728549487
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Don Minico ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5036294596824,
+                        38.2151118657691
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Don Nino",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504122590568,
+                        38.1780329879727
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Don Orione",
+                    "category": "Theatre",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5455726486575,
+                        38.1766118539053
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Don Salvatore ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516211902813,
+                        38.1926324803339
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Donna Moda",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525274411287,
+                        38.1831030895015
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dorsale Curcuraci Antennamare",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5319308015968,
+                        38.2615710945292
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dorsale Curcuraci Antennamare ",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.536964132185,
+                        38.2454274822719
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott. lngo",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512212633384,
+                        38.1827890908526
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott. lsaja",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548487986493,
+                        38.182413193731
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott. Orazio Grimaldi Odontoiatra ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485402801681,
+                        38.1901039596899
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott. Ssa Amalia Brigandi",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496056545372,
+                        38.179483702058
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott. Ssa Marchesini ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485915367657,
+                        38.1844751917583
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott.ssa Itrera Ketty ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511411286322,
+                        38.1852078602874
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Adelardi Ginecologo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5588535988102,
+                        38.2109968431916
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Alecci Umberto",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448568722161,
+                        38.1984517678337
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Alibrando Antonino",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525137955215,
+                        38.1992973011008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Arnieli Gustavo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5463934807748,
+                        38.1909776055434
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Barbaro Luigi",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555208499264,
+                        38.2054012180714
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Barbera Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517633736084,
+                        38.1839472167749
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Biondo Doriana",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5447157473946,
+                        38.1811682312091
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Calogero Francesco",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5575228307887,
+                        38.2058414333463
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Caristia Francesco",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5174194729976,
+                        38.2633202097686
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Castiglia Antonino",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544036370092,
+                        38.2032207596937
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Celona Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5488290329809,
+                        38.1953144668296
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Cordopatri Ginecologo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566330415572,
+                        38.2054564043803
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Cucinotta Carmela",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536406253589,
+                        38.1838250424362
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. De Francesco Petronilla",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5456985921446,
+                        38.1979168959969
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Famulari Cinzia",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5491805187812,
+                        38.1852486727488
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Fiumara",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5571769899777,
+                        38.1842754274989
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Fomaro Placido ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5487456366673,
+                        38.1880496471432
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Giliberto Giovanni",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5488957976731,
+                        38.1904175120439
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Giubbrone",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5456068114069,
+                        38.2130571040852
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Gulletta Antonino",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5475452620988,
+                        38.1814983507137
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Lipari Luigi",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547525562798,
+                        38.1911046729094
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Maccarone Marcello",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5572061215463,
+                        38.1855881009078
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Maiorana Maria ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5580963419366,
+                        38.2187785524807
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Marciano Antonino ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529133524081,
+                        38.1857599562506
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Mezzanares Arturo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5569130599027,
+                        38.2023808013679
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Milone Cosimo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5459497923925,
+                        38.188960244153
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Miragliotta Salvatore ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5549017731318,
+                        38.2031791059049
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Moraci Nicolò",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539528558997,
+                        38.2084008191567
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Mormina Giovanni ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5318546788689,
+                        38.1542016577165
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Nava Domenico ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534850776841,
+                        38.2093243034203
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Ninniti Gabriele ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534891447935,
+                        38.1886896146402
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Oliveri Domenico",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518835935069,
+                        38.1954946965149
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Origlio Paolo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522631359707,
+                        38.1828899284705
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Picciotto Morichetti lsabella",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5495083398582,
+                        38.1805958530304
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Siclari Rita",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461448274213,
+                        38.1888132089381
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Soraci Annibale",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519147215824,
+                        38.2093129566159
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Toscano Antonino",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443993264948,
+                        38.1949528666048
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Zanghi Letterio",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5497718860946,
+                        38.1831741733497
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr.ssa Orlando Annunziata Lucia",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5788254788824,
+                        38.2653252843609
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Duca Windsor",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493531850685,
+                        38.1968663703298
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Duomo",
+                    "category": "Historical Monument Building",
+                    "type": "Cultural_Buildings"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5527796779002,
+                        38.1923092153704
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "E. Castronovo Bordonaro",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5115146285164,
+                        38.176111726063
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ecospiritual Shop Fiori Gialli",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524978598491,
+                        38.1891738051952
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Edicola",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554523024704,
+                        38.204493868996
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Edicola",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5460360845095,
+                        38.2116706048668
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Effe2",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525924415884,
+                        38.1872279357128
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Effeci",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532617388306,
+                        38.1840941749289
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Elettrauto Falcone Massimo",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.555954883156,
+                        38.1827492494013
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Elettrofomiture Provvidenti",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.544484937074,
+                        38.1812871093918
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Elleesse Sport Club",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368561103015,
+                        38.1647053098505
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Emporio Annani",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532946308952,
+                        38.1862375708003
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4790990940589,
+                        38.0636756800641
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5158222367333,
+                        38.1440913141495
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5210759117003,
+                        38.1566873779108
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5323482869055,
+                        38.1580975800773
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5398272695895,
+                        38.1656088836862
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5293381283194,
+                        38.1705260821252
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5435436356134,
+                        38.1759106116283
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5450242023559,
+                        38.1786955496495
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5458678614503,
+                        38.1806987867028
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5438531341048,
+                        38.1814241048579
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5476311503136,
+                        38.189764825662
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5451410679684,
+                        38.1981462058481
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548872461707,
+                        38.1983267514943
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518881692674,
+                        38.2038007815313
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5453664510597,
+                        38.2111216644695
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5594804173034,
+                        38.2119224510293
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5895400097891,
+                        38.2509595243419
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.62764005543,
+                        38.2659218879785
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Eos",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5614368021887,
+                        38.2159012067806
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Era lnformatica",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5817036901067,
+                        38.2477819207402
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esprit",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559498562108,
+                        38.1874135784826
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5084770397399,
+                        38.1108198931988
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5204514977773,
+                        38.1335567112608
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5224622858804,
+                        38.1410964195738
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.527788429343,
+                        38.150694896075
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5367370716491,
+                        38.1623166019801
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5415200815505,
+                        38.1828736769549
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5340391017373,
+                        38.1866893237363
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493322686718,
+                        38.1891360078585
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5489122176877,
+                        38.1983467824676
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558361929019,
+                        38.2020148897726
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5626009135485,
+                        38.2166293996017
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5632660723719,
+                        38.2210969395292
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5505440905671,
+                        38.2235545045498
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5620824981345,
+                        38.2253488998338
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4466987499559,
+                        38.2438988984475
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6234022683326,
+                        38.2642296074278
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ester Pelli News",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504706803829,
+                        38.1825026807762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Eugenio Penna",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5541114392479,
+                        38.1842271034556
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euphonya Management di Grasso D.",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5472928445633,
+                        38.1974085368417
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "EURO Spin",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5234181694262,
+                        38.143734946335
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "EURO Spin",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4458196113428,
+                        38.2431640484382
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euromobil F.a.t.a.",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5302859833253,
+                        38.1553029321753
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euronics",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5208289655716,
+                        38.1365464087272
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euronics",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5216621894149,
+                        38.1387455181522
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euronics",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5298294630407,
+                        38.1545940497492
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euronics",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5306657862524,
+                        38.1551777517762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euronics",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5455061485512,
+                        38.1906645642197
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "EURONICS Point",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554788988943,
+                        38.1850539807184
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Europa Auto S.p.A.",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5415600104644,
+                        38.1628949492527
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Europcar",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550858536472,
+                        38.1922458296305
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Eurotruck S.r.l.",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5136417028393,
+                        38.1221059821917
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Eventi",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5530509911097,
+                        38.1832714792675
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "expert Papino",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5223499857663,
+                        38.1406080688068
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "F 3 Motors S.r.l.",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5403002983091,
+                        38.164249578069
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "F.D. Fashion Group Sri",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5277610354311,
+                        38.150748748661
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "F.k.t.",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5595093238711,
+                        38.2124653950903
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Famulari Dr. Cinzia",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510098220288,
+                        38.1875184286359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fantasy",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5499185982042,
+                        38.1833388014554
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fantasy",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6400005527612,
+                        38.2651640916274
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.504122251289,
+                        38.1514579850288
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5359452848164,
+                        38.1623258965199
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498116183025,
+                        38.1894661333783
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.574952584046,
+                        38.2380197171899
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5997199639517,
+                        38.2556705831985
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5185137600774,
+                        38.2633623232919
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Baratta",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.608721191965,
+                        38.2606660298065
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia batteri Dr. Francesco",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5024511576064,
+                        38.1419455833659
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Brancate Carmela",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.555583339556,
+                        38.2026724741765
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Caminiti Ganjfi Carmelina",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5143021397525,
+                        38.1193440545162
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Capila Dr. Renato",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5314100854373,
+                        38.1528350656374
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Coppolino Alessandro",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566935615853,
+                        38.206049478507
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Costa",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5567114107408,
+                        38.2080638508941
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia delle Erbe",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5552170720526,
+                        38.2138977954592
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Dott.ssa Mangano",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4780920719963,
+                        38.2672645040442
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Feriazzo Dr. Rosa Maria",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5200909213238,
+                        38.1751271926315
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Fiandaca di Montagnese A.",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5288545023497,
+                        38.1698330666829
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Fili Gargano",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5189013156583,
+                        38.1564712874146
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Freni",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5062224304735,
+                        38.1039258315019
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Largo Giuseppe Seguenza",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538183383992,
+                        38.1970342062068
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Macaione Dr. Serafina",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4951119006661,
+                        38.1420692344973
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Mangano Carlotta",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4817896389416,
+                        38.0658814405608
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Mangiavi Dr. Rosario",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5491582046749,
+                        38.209511983817
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Pirrone Angela",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526782819396,
+                        38.2037484977689
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Pizzimenti Concetto",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5816083093389,
+                        38.2605759913358
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Ruffa",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5537736746831,
+                        38.1867416343608
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Ruffa Dr. Antonio",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534954322134,
+                        38.1869202697815
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia S. Margherita",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4584135969709,
+                        38.0845785580251
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia San Paolo",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368878212584,
+                        38.1851262063906
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Scoglio Letteria",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4924870430671,
+                        38.0992973462401
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Sgroi Maria",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5186192512416,
+                        38.1403517236715
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Tornaseli Francesca Maria",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5177980116548,
+                        38.2926575129234
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Trovato Dr Onofrio",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6419106397948,
+                        38.2674532589975
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Giuseppe Garibaldi",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5557557695542,
+                        38.2043366934827
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Monsignor L. d'Amgo",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533861455161,
+                        38.200274038695
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Seminario Estivo",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547201544021,
+                        38.2108893367489
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Tommaso Cannizzaro",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536470940077,
+                        38.1868250127115
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Tommaso Cannizzaro",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547041,
+                        38.189946
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Ventiquattro Maggio",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550057723468,
+                        38.1923692582282
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Viale Europa",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5398009446801,
+                        38.183506409968
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Viale Giostra",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511174753168,
+                        38.2089843414472
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Viale San Martino",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448542162944,
+                        38.1756378383707
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Viale San Martino",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5486260021196,
+                        38.17961707177
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Viale San Martino",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533407999647,
+                        38.1848812664182
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Faro Superiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5807631277719,
+                        38.2624963573393
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Faro Superiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5804048084074,
+                        38.2641019655387
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fata Morgana",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547253023976,
+                        38.2035161607337
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fata S.r.l.",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5291514966458,
+                        38.1532883448282
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Federazione Italiana Palla a Volo",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5582812245136,
+                        38.2049552958596
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Federazione Italiana Tennistavolo",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5446238547436,
+                        38.1766294094051
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fera Dott. Rosalba Studio Medico",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5817674676632,
+                        38.2630678644686
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fiera Campionaria di Messina",
+                    "category": "ExhibitionorConferenceCenter",
+                    "type": "Exhibitions"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5573766534433,
+                        38.2021470531168
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fiera di Messina",
+                    "category": "ExhibitionorConferenceCenter",
+                    "type": "Exhibitions"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55800940559,
+                        38.2033475904952
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fili Cambria Snc",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5206875344502,
+                        38.1346084396071
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fili Cambria Snc",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.521985447557,
+                        38.1396297136045
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Findomestic Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546076830822,
+                        38.1913609046302
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fineco",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542979398737,
+                        38.1850836724604
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fiumara di Larderia",
+                    "category": "Waterway Element",
+                    "type": "River"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5208047098784,
+                        38.1341254093346
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fiumara di San Filippo",
+                    "category": "Waterway Element",
+                    "type": "River"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5193125239347,
+                        38.157535869841
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fontana di Orione",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522702114391,
+                        38.1921996708121
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "forerĂ  Antonino",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448394517486,
+                        38.1985086655857
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Formula 3 S.p.A.",
+                    "category": "Motorcycle Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406141773319,
+                        38.1643839979718
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Formula 3 SpA",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406964551062,
+                        38.1644763496348
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Formula Tre",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5409461446473,
+                        38.1639726961219
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Forniture Edili G. & G. (S.n.c.)",
+                    "category": "Home Improvement i Hard?",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5087954024041,
+                        38.1114241636891
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Foscolo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5470359137806,
+                        38.1363833403352
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Foti Macelleria",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5447692954997,
+                        38.1809595555036
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fox",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5466613664805,
+                        38.1781963846292
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Furane Pietro",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523582817609,
+                        38.1796695125721
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "G&G Pneumatici",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5557817540001,
+                        38.2019426607005
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "G. S. D Athlon",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5386649532804,
+                        38.1859562259664
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati",
+                    "category": "Railway Station",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5041351601385,
+                        38.1041969862471
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Inferiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5025407794877,
+                        38.1087567348485
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Inferiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5019970162471,
+                        38.1096670384903
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Marina",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5070468643687,
+                        38.106338508244
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Marina",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5077773937268,
+                        38.1065291611299
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Superiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4945884843196,
+                        38.1118197691726
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Superiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4952373365767,
+                        38.1119576411095
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ganzim",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6108411995226,
+                        38.2582993882195
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ganzini",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6157982902058,
+                        38.2605942249883
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Garage Gentiluomo",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523672658143,
+                        38.1792716955022
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gelateria Aiello",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549929434875,
+                        38.1980036643647
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gelateria Spadaro",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5729677898301,
+                        38.2368898171213
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gelateria Spadaro",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5729737876121,
+                        38.2368898455267
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Generazioni ltaliane",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522355390654,
+                        38.1868324061655
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gesso",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4664907061364,
+                        38.2344300231085
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ghota Caffè Restaurant",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506220950415,
+                        38.1913612550866
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giampilieri",
+                    "category": "Railway Station",
+                    "type": "Rail_Station"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4777711422064,
+                        38.0627968003318
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giampilieri Marina",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4821762270328,
+                        38.0657408556273
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giampilieri Marina",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4852240650264,
+                        38.0683345846196
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giampilieri Superiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4689034204897,
+                        38.0688959791476
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giampilieri Superiore ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4672378908222,
+                        38.0691093588337
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giap",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5562155533055,
+                        38.2087332935312
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giglio",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.557421282565,
+                        38.1852902126825
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gioielleria Gullo",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5503165299062,
+                        38.1825299491582
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giorgia ",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5470386627631,
+                        38.1737427271356
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giubrone Dr. Francesco ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5463592525194,
+                        38.212696753957
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giuffrida ",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5390521128975,
+                        38.1647335691159
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Grand Hotel Uberty",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5576402152756,
+                        38.1862209075854
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Grand Hotel Udo",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5691019548261,
+                        38.2339937285496
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Grs Petroli",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5358772820414,
+                        38.2135893689274
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gs",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545919553127,
+                        38.1852010070916
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gs",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448169330339,
+                        38.192589657657
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gulli Katia Alimentari ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498252601493,
+                        38.2036201905497
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "GulliCarmelo",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5549285529353,
+                        38.2091931068496
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Hospital Bar",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.542303638202,
+                        38.1822295711608
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Idea Sposa",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554231414976,
+                        38.1875534890509
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Idustrial Garage-Car Valet ",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554170177076,
+                        38.1822239184137
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Cappero",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550636104855,
+                        38.1837700061857
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Fico d'lndia",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544016583592,
+                        38.2001578328647
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Gambero Rosso da Enzo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6094326775775,
+                        38.2608343068978
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Girasole",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506613565838,
+                        38.1824036074234
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Girotondo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485066108429,
+                        38.1895290055309
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Griso",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5530949303287,
+                        38.1804806714205
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Nido",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.548997422329,
+                        38.1850039029313
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Papiro",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5494543868973,
+                        38.1820570832556
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Peloritano",
+                    "category": "Campground",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4641087593671,
+                        38.2594997910834
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Picchio",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4961099918783,
+                        38.1112929560111
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Ponte",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5981633009429,
+                        38.2647181353887
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Profumo del Pane ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524659226099,
+                        38.2056688250735
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Viale del Pane",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5483467774774,
+                        38.1793938452287
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Interdonato Salvatore",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5582275867924,
+                        38.207836027913
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5424519105198,
+                        38.1743270665742
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5528380284524,
+                        38.1826107166522
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558427749888,
+                        38.1878289305911
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5535218299594,
+                        38.1960511661498
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5481016810613,
+                        38.1988558095124
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5595536476712,
+                        38.2168080700848
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "intimissimi",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5535081222695,
+                        38.1858956907684
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intimo d'Autore",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5553944990048,
+                        38.2195496299404
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intimo di Salpietro Cristina",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509356014643,
+                        38.2229365556053
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intimo Uomo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506550484271,
+                        38.1833772333667
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54104190764,
+                        38.1715964401383
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5618124577335,
+                        38.184926883742
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5580925677013,
+                        38.1877504845562
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5537932887211,
+                        38.2006348169031
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5573363590629,
+                        38.2138927189028
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.565621565037,
+                        38.2259712530092
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5924975865516,
+                        38.2537983913327
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Irish Pub",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6029740988247,
+                        38.2569623832033
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Comprensivo Enzo Drago",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5438292709001,
+                        38.1766116984375
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Sacro Cuore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5460592714527,
+                        38.1907551205253
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto San Luigi",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550832686754,
+                        38.2008548835045
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Scuola Paritaria Can. A. M. di Francia",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5472414570277,
+                        38.1858813777073
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Statale d'Arte",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5563204286475,
+                        38.2014283639848
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Statale d’Arte Juvara ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539890464564,
+                        38.2031858319055
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Tecnico Commerciale Jaci",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524759180251,
+                        38.1895665636474
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Tecnico Industatale Verona Trento",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536052461293,
+                        38.1830781404851
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Tecnico Nautico Caio Duilio",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545438610646,
+                        38.1821528584907
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Italia ",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492432468278,
+                        38.1834176142988
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Jamaica",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5500843597614,
+                        38.1857597213154
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Jazz",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529673365471,
+                        38.1836289620563
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Jeanseria Naif di Latella Silvana",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555277640522,
+                        38.1827852387287
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Jhonnie",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551573632775,
+                        38.1824568559628
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Judo Club Yama Arashi",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516640123073,
+                        38.177606994309
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Just Firm di Stumiolo Biagio",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519398440994,
+                        38.185607455849
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Juvara",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5398745708281,
+                        38.1699645596225
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Katia di Ucata Attilio",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547784300827,
+                        38.1844631398432
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L'Agave",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4466292216145,
+                        38.2438395945549
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L'Essenziale",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5392854202743,
+                        38.1837339176824
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L'Euro Porchetta",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5390359821961,
+                        38.1848693472257
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L'Odissea Gastronomica",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5455422935775,
+                        38.2090062367862
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L. Puglisi",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5535541814856,
+                        38.1860188629991
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Buona Forchetta",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532576118127,
+                        38.1810482318997
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Cambusa del Vicolo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6070052561772,
+                        38.257685023681
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Campagnola",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523169577009,
+                        38.1944940784717
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Casa della Pizza",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6054146281401,
+                        38.2582393766803
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Casa della Pizza ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545538104462,
+                        38.1922783279058
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Caveja",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551061397215,
+                        38.1847525710146
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Cicala",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550470565483,
+                        38.2051300963631
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Dolce Vita",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526004801248,
+                        38.1913495168318
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Farmacia delle Erbe",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5386775128248,
+                        38.164564877546
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Girandola ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504470201035,
+                        38.1824585850417
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Locanda del Barbablu",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556461063885,
+                        38.1891255527397
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Messinese ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566056096012,
+                        38.2057811613885
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Monica Michele",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554489273288,
+                        38.190089799703
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Nuova Panetteria ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5483567127875,
+                        38.1794018883701
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Parolaccia ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5657133249611,
+                        38.2310478953724
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Perla Nera",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5491316633488,
+                        38.185098497931
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Pineta Sporting Club",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5404740148181,
+                        38.2062245000065
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Pizzaccia 2",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5706155006104,
+                        38.2355772609849
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Primeria",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6366048374881,
+                        38.2630249099623
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Residenza",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509448285574,
+                        38.186455500356
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Ruota Gelateria ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6026354569249,
+                        38.2567978540471
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Stellina",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5483309105861,
+                        38.1793767769162
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Terra dei Sogni",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5454651827728,
+                        38.1800091470852
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Tonnara",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.555306096924,
+                        38.187811426357
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Torre",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6099205235244,
+                        38.2575157455415
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Tradizione",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560640355125,
+                        38.207080168198
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Trattoria",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496953328284,
+                        38.1909740557088
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Valle ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5369199154558,
+                        38.1648615528728
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Valle Giovanni",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5374894255154,
+                        38.1631668176355
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Larderia lnferiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4994681558427,
+                        38.141289875778
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Larderia lnferiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5001135530894,
+                        38.1420768704051
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Larderia Superiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4936942793729,
+                        38.1388847530633
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Larderia Superiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4932717597595,
+                        38.1390174208142
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Le Delizie del Pane",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5354941007566,
+                        38.212700890941
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Le Dolcezze",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516341895005,
+                        38.1883720479363
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Le Due Sorelle ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5543421311316,
+                        38.192911114425
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lepanto",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534402279056,
+                        38.1913434479487
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lettere ",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5480815650191,
+                        38.231049320987
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Liceo Classico Francesco Maurolico",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5503318656807,
+                        38.1916717876134
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Liceo Scientifico Archimede",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5445074865926,
+                        38.1989189670135
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Liceo Scientifico Statale G. Seguenza",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517079405549,
+                        38.1937264999087
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Life Motors S.r.l.",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5416627819336,
+                        38.165586474836
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "lmbarco",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5573193619696,
+                        38.1795577586354
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lo Giudice G. Sas",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5481187229003,
+                        38.1804773946186
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lo Re Vincenza Pediatra",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496387836075,
+                        38.184659025557
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Locanda",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4866393513348,
+                        38.2300389573221
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Locanda ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4857357574945,
+                        38.2308474452539
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "lp",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5195919600772,
+                        38.1300649413663
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "lp",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5287004983014,
+                        38.152509513162
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "lper",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.542240653175,
+                        38.1856930482113
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "lris",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6032944852098,
+                        38.2571618151971
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ls Auto S.r.l.",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5478323791599,
+                        38.1730766752845
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Luisa Spagnoli",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555722534191,
+                        38.2025514654148
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lungomare",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550997297388,
+                        38.1965223838526
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lux",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496468596304,
+                        38.1862465021134
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L’Altro Bar",
+                    "category": "Nightlife",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6067841039126,
+                        38.2597052853588
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L’Altro Orso",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546141290169,
+                        38.2008835707135
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L’Isola Azzurra",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498186831265,
+                        38.1827995252098
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "M. Polimeni & Zumbo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5235737781798,
+                        38.1384415611714
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Macelleria Ciccarello Francesca",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5141429562773,
+                        38.1189754427226
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Macelleria Liotta Stellario",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5261391763514,
+                        38.1881218531418
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mad Arts",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5527908616132,
+                        38.2052624893388
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Madonna dei Miracoli",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419615567569,
+                        38.1730652203002
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Madonna della Mercede",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5468696463369,
+                        38.1900011791172
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Madonna di Lourdes",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549744609822,
+                        38.2025132046622
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Madonnina del Porto",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5605975431688,
+                        38.1962881935625
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Madonnina del Porto",
+                    "category": "Historical Monument Building",
+                    "type": "Cultural_Buildings"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.560742329283,
+                        38.1965227484156
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Magazzini Lisitano",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5541821958453,
+                        38.2046202285566
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Maggiore",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55512190728,
+                        38.1926378591592
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Majorana-Marconi",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5388994556887,
+                        38.2130237172653
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Makoto",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498966631569,
+                        38.1975756624215
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mancini Dr. Fiorenzo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5386508657887,
+                        38.1651855328435
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mania",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554029436246,
+                        38.191554130381
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Manzoni ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5465512831106,
+                        38.1810098737997
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Marakaibo",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5327019682876,
+                        38.1561229356678
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Maria Santissima di Loreto ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5430595078781,
+                        38.1626240572553
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Maria Stella Maris",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5344842503111,
+                        38.1612004644912
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Marinely",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524198921119,
+                        38.1821159353405
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Marsala Filippo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509784032276,
+                        38.1822491448693
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Giorgio",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5337316619714,
+                        38.2749815087251
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Giorgio ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5338652373294,
+                        38.2738542453001
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Giovanni",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5420812034486,
+                        38.2652151891543
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Giovanni",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5437416564402,
+                        38.2665514175879
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Nicola",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5396414577682,
+                        38.270623067162
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Nicola",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5404415329779,
+                        38.2707024785486
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa Santa Lucia ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5462545993558,
+                        38.269486085956
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa Santa Lucia ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5480891411613,
+                        38.26999457484
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mastronardo Carmelo i Figli ",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542704130427,
+                        38.1816927419888
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mavì S.p.A.",
+                    "category": "Truck Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5181671417272,
+                        38.1275721733042
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Max Tendenze",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5488796034067,
+                        38.185651122932
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "MaxMara",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523892556054,
+                        38.1838001970866
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "McDonald's",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5543187816611,
+                        38.1851037630655
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Meeting",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532047271222,
+                        38.2209518823166
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mercati Alimentari Bonino ",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5190226327333,
+                        38.1461525379193
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Merceria Giglio",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5301384327898,
+                        38.1533829249428
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Merci Via Siracusa ",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5422740767353,
+                        38.1719150893023
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mercurio ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541892264805,
+                        38.1724411176676
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mercè Via Don G. Minzoni",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5445175108605,
+                        38.189731269419
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510293370044,
+                        38.1782597941635
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461439704487,
+                        38.187767634559
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina Centrale",
+                    "category": "Railway Station",
+                    "type": "Rail_Station"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5586413582725,
+                        38.1854888498546
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina Marittima",
+                    "category": "Railway Station",
+                    "type": "Rail_Station"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5607326395476,
+                        38.1878827901295
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina Tremestieri",
+                    "category": "Ferry Terminal",
+                    "type": "Ferry"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5208499806181,
+                        38.1312034134868
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina/Caronte & Tourist",
+                    "category": "Ferry Terminal",
+                    "type": "Ferry"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.559261724013,
+                        38.2101630481639
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina/Molo Norimberga",
+                    "category": "Ferry Terminal",
+                    "type": "Ferry"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5634108129409,
+                        38.1911951534437
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina/Tremestieri",
+                    "category": "Ferry Terminal",
+                    "type": "Ferry"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5215131079824,
+                        38.131154529395
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mexico e Nuvole",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544051837092,
+                        38.194897706921
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Micali Piera",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368629775146,
+                        38.1645893838962
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Milauto",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5276704204446,
+                        38.150568389409
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Milauto",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5277559223198,
+                        38.1506307669278
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili Marina",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5159219524875,
+                        38.1232088614289
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili Marina",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5155889276031,
+                        38.1233176468006
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili San Marco",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.506940068987,
+                        38.1203772907241
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili San Marco",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5068503928769,
+                        38.1206202141298
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili San Pietro",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4863315157121,
+                        38.1262618874234
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili San Pietro",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.48670807151,
+                        38.1268985376633
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Minottica ",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552993904293,
+                        38.188212466214
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Moda Danza",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5531662575564,
+                        38.1896217746759
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Moda ltalia",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5223460473068,
+                        38.1406000535016
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Molino",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4533310571135,
+                        38.074730405484
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Molino ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4537436290864,
+                        38.0740723206719
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mondadori ",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558810151422,
+                        38.1877951214222
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mondello ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539202272461,
+                        38.1806684657812
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte Dei Paschi Di Siena",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5278036571291,
+                        38.1479959275826
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte Dei Paschi Di Siena",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5500665805356,
+                        38.1784062393293
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte Dei Paschi Di Siena",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524425719471,
+                        38.1876170975663
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte Dei Paschi Di Siena",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559396294967,
+                        38.206208893368
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte Dei Paschi Di Siena",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5608107659453,
+                        38.2195249983043
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte di PietĂ ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5507223249908,
+                        38.1946535597817
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte di PietĂ  ",
+                    "category": "Theatre",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506790859359,
+                        38.1945543928059
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mood",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553156310041,
+                        38.183223989122
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mood",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509518521691,
+                        38.186185628964
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mood ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547784300731,
+                        38.1844630497531
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Morabito Francesco ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.52973167289,
+                        38.1513697396701
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Morgana ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525121851762,
+                        38.1863338765295
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Morganti Maria ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5475010690118,
+                        38.2090763812089
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "motivi ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5521840480134,
+                        38.1835713178742
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Motonautica e Velica Peloritana",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5635225075612,
+                        38.2206283057044
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Motor Service Sri",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5650560534385,
+                        38.2312477460396
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Municipio di Messina ",
+                    "category": "CityHall",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5537840557123,
+                        38.1937462080223
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Muschio & Miele",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5537580165179,
+                        38.1845663297069
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Museo Annibile di Francia ",
+                    "category": "Museum",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5476960067954,
+                        38.1832564330505
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Museo Regionale ",
+                    "category": "Museum",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5616808280701,
+                        38.216152260915
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Music Center Strumenti Musicali ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492970510765,
+                        38.1821093287618
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nara Camicie",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518766624602,
+                        38.1835039038803
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nebe Coffeebook ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6395056496043,
+                        38.2650408144792
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nettuno ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555391492176,
+                        38.1992404798135
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "New Fruit of Sicily S.r.l.",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5341079994438,
+                        38.1587185873573
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Next ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554024154147,
+                        38.1871986448842
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nicotra",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.537525687612,
+                        38.1631300006163
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Noi Due",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517009370787,
+                        38.1930617019225
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Non Solo Bijoux ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517490624968,
+                        38.1885165343182
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nunnari & Sfameni",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519927575157,
+                        38.1878798993031
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nuovo Camping dello Stretto",
+                    "category": "Campground",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.630707411294,
+                        38.2617567034031
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nuovo Millennium",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.564119777766,
+                        38.2242858138609
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nuovo Oratorio della Pace",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504340176293,
+                        38.1937765210423
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nuovo Ritrovo Lombardo ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5464397492051,
+                        38.1773566455819
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nuovo Tennis Club Curcuraci",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368472628129,
+                        38.1646852756762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Oasi 2000",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546003710054,
+                        38.1979245513225
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ocean Fish ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5585581618877,
+                        38.2094729977482
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Oddamo Giovanni",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533775386237,
+                        38.2014195939217
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Odeon",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529337588374,
+                        38.1803779542964
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Odeon Cinecenter",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55182507741,
+                        38.1831847752159
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Officina Elettrauto ZappalĂ ",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5553719733278,
+                        38.1820987521659
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Olimpia ",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5468781516303,
+                        38.1904660544719
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Oltre",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5521205824178,
+                        38.1835030449321
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Optimus",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5585555726977,
+                        38.2082214271973
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orchidea",
+                    "category": "Nightlife",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548227814956,
+                        38.1885419068656
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orient ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485803311976,
+                        38.1798417789261
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orimi ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5429319151714,
+                        38.1921489937849
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orologeria Sulfaro",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5487206542069,
+                        38.1895130125835
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orto Liuzzo",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4575633165836,
+                        38.2559521222945
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orto Liuzzo",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4607881001119,
+                        38.2566982490436
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ortofrutta di Chiaia lgnazio",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5494922121475,
+                        38.1836766878538
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ortofrutticoli ed Agrumari Morgana",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5563601124748,
+                        38.1842975978851
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Osteria del Campanile",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523020474615,
+                        38.1928855767368
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Osteria Etnea",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5487628829664,
+                        38.1870840696661
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Over Glass",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551269159942,
+                        38.1890421527476
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Oviesse",
+                    "category": "Department Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545453295577,
+                        38.1854197119101
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "P. G. B. Tomatore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510140283857,
+                        38.1952117278049
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pace",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5744433639914,
+                        38.2375414998717
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pace ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5766109825975,
+                        38.242214453816
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Paino ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5370169161243,
+                        38.1961568935257
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palacultura",
+                    "category": "Library",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517444918104,
+                        38.1977772385801
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palacultura",
+                    "category": "ExhibitionorConferenceCenter",
+                    "type": "Exhibitions"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516944206658,
+                        38.1977890000109
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palazzo Zanca",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529665132875,
+                        38.1938823041962
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palazzo Zanca",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522154657893,
+                        38.1938988135466
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palazzo Zanca",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538671691403,
+                        38.194126462167
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palestra Body's Art",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5464810368384,
+                        38.1825110133209
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palestra Sportime",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5502045618065,
+                        38.2032960801061
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palmares ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5572659362813,
+                        38.2188716316998
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pam",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.560907668323,
+                        38.2195334490164
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pam",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5973985293765,
+                        38.261672611952
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pandolfo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523716562246,
+                        38.188008626815
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Panificio Bruno",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.559213535296,
+                        38.2117862498661
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Panificio Cannata Salvatore ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5145821920006,
+                        38.1201250844068
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Panificio di Filocamo Antonina",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516777579953,
+                        38.2061269744029
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Panificio Fratelli Bitto",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5350766415831,
+                        38.1860354097522
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Panificio Giacoppo",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5265221905846,
+                        38.1721183457884
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pantano Grande ",
+                    "category": "Waterway Element",
+                    "type": "Lake"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6139371450195,
+                        38.2607450193183
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pantano Piccolo",
+                    "category": "Waterway Element",
+                    "type": "Lake"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6341293546274,
+                        38.2689959089137
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Papisca",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461050213126,
+                        38.1772031341521
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pappagallo",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492554256036,
+                        38.1956413464231
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pappamondo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547825497196,
+                        38.1893734244271
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Paradis",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5667111973416,
+                        38.2272978880046
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Paradisiculo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5487431525653,
+                        38.1837201677864
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5222480968172,
+                        38.1404646435113
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5954968350768,
+                        38.2599952844516
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5963912556376,
+                        38.261092093711
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.52299767718,
+                        38.1424864265657
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5229955397395,
+                        38.1426383623931
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5614281362812,
+                        38.2150594625209
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5647873276047,
+                        38.2164716912821
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5972201293441,
+                        38.2600093562797
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5944201044567,
+                        38.2613357706196
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5953805658346,
+                        38.2616281692585
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio Est Annunziata",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5647381966057,
+                        38.2164914544493
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio Scoperto",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5323374108358,
+                        38.1580815344948
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parisi ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536809003746,
+                        38.1976313516466
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parrello Domenico",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5413842018938,
+                        38.1724737294983
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parrocchia S. Paolino Vescovo",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5142304665746,
+                        38.119303734041
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parrocchia San Clemente",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5471625188375,
+                        38.1810827072526
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parrocchia Santa Domenica",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.523342648697,
+                        38.1380696134974
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parrocchia Santa Maria Dell Arco",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5588422203104,
+                        38.2079888509677
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Amgo",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526903581414,
+                        38.2093245830787
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Benevento Luca",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560250586855,
+                        38.2072119391802
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Corio Giovanna",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518202055753,
+                        38.2060606644145
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Cristo Re",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477857590231,
+                        38.1965981299612
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Cristo Rè",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542473139064,
+                        38.1923588659488
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Dolce Vita",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547225868541,
+                        38.1858273236771
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria e Gelateria Vmci",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5363177539268,
+                        38.212308885224
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Fili De Grazia",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5540566718088,
+                        38.1929857515596
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Freni",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5290000702232,
+                        38.1530857088043
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Giacobbe",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5444400956925,
+                        38.1723018662954
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Giacobbe Giuseppe",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5417308076669,
+                        38.1809023618526
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria la Messina",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5981056169974,
+                        38.2548623001681
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria la Messina",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5981155520614,
+                        38.2548703435025
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Nuovo Millenium",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5668825506439,
+                        38.2275086162528
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pezzolo",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4570428700576,
+                        38.084508173838
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pezzolo",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4579083248927,
+                        38.0863795453371
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza Antonello ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5520318050327,
+                        38.1935960615345
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza Duomo",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5514926137607,
+                        38.1923159910319
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza Rodia",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4782309759018,
+                        38.2713816697789
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza Salvatore Pugliatti",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5505981768952,
+                        38.1888220413543
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza San Francesco ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511126294387,
+                        38.1983210890024
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza XXIV Maggio",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5520577268339,
+                        38.216353137301
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piemonte ",
+                    "category": "Hospital/Polyclinic",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5428425365251,
+                        38.1819511905789
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piemonte-Pronto Soccorso",
+                    "category": "Hospital/Polyclinic",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419383183289,
+                        38.1824227929121
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piero",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5507309129945,
+                        38.185921688368
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pim",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5454415824166,
+                        38.1799570557212
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pisani Antonino i C. Dolciumi",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556149691802,
+                        38.1850293551115
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piscina Comunale",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461674863363,
+                        38.1772714023036
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pizza Planet",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5520276443369,
+                        38.1856298584609
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pizzeria la Scala",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4770638329308,
+                        38.2707944122356
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pizzeria-Ristorante Antica Torre",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4707971219192,
+                        38.2632367759774
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pizzino Giuseppe",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558505220916,
+                        38.204498080501
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Policlinico G. Martino",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5310220382563,
+                        38.1621939220323
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Policlinico Universitario ",
+                    "category": "Hospital/Polyclinic",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5360198819712,
+                        38.1631759429653
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Policlinico Universitario ",
+                    "category": "Hospital",
+                    "type": "Public_Buildings"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5343202057704,
+                        38.1638950099017
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Policlinico Universitario-Pronto Soccorso",
+                    "category": "Hospital/Polyclinic",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.536006247792,
+                        38.1631278964516
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Polisportiva Cristo Re",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5488802414793,
+                        38.1956835753523
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Polizia Messina",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5543018360919,
+                        38.1994736073551
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Polizia Municipale",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.558636013469,
+                        38.1860676206805
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Polizia Via Gran Priorato",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548601684854,
+                        38.199802104075
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Polizia Via Villari",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5469118801797,
+                        38.1841094630775
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Porta Messina ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5600367225759,
+                        38.1872387612725
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Portella",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5229214348579,
+                        38.2362486419056
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Porto di Messina",
+                    "category": "Waterway Element",
+                    "type": "WaterElements"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5605869461062,
+                        38.192887552887
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Porto di Messina",
+                    "category": "Marina",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559536566911,
+                        38.1992864030342
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Positano Calzature",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5480365275107,
+                        38.1838368209941
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4812481778183,
+                        38.0654340748823
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4988796543228,
+                        38.0898086059439
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4938790978558,
+                        38.0993558265261
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4804060944635,
+                        38.099747764514
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4778505980817,
+                        38.0998058090115
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.477836439282,
+                        38.0998277352224
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5058229291182,
+                        38.1046806952259
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5069661938676,
+                        38.120359418365
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5216622506855,
+                        38.1349998551296
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5231248108434,
+                        38.1428628859608
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5040769307913,
+                        38.1508359962462
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5148486875379,
+                        38.1571500971878
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5364438982218,
+                        38.1636867443388
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.538448522498,
+                        38.164307897899
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4981765024459,
+                        38.1661129270624
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5285102982343,
+                        38.1693436312997
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5076322274087,
+                        38.1735544821034
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368109623125,
+                        38.1775195485284
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5454917528117,
+                        38.1800652520008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5502193817112,
+                        38.1832202513004
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5478520689603,
+                        38.1835070745322
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560996734756,
+                        38.1843683543239
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517538902762,
+                        38.1860094436564
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5460066322355,
+                        38.1865823516776
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539161761393,
+                        38.1919934456465
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5402448528466,
+                        38.193482947644
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529227566323,
+                        38.1951576784239
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5217342684141,
+                        38.196041419787
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5450292317644,
+                        38.1981296887041
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556379195952,
+                        38.201262228081
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556085014618,
+                        38.2023836938768
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5541316337571,
+                        38.2038992464758
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5484912115885,
+                        38.2076805091117
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5464559571455,
+                        38.2115346182127
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5602957487013,
+                        38.2141004995586
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5561855903826,
+                        38.2143151823962
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5660858561834,
+                        38.2265752141327
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4667625177325,
+                        38.2336445803759
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5715707941766,
+                        38.2362904845159
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6027729369969,
+                        38.2568604764371
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6050308975292,
+                        38.2603438460028
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5810589897813,
+                        38.2613071603817
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6380913465091,
+                        38.265410057506
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5365587419603,
+                        38.2740410947826
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4872958749509,
+                        38.2755946355105
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419649943043,
+                        38.2954818362181
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane AJtolia",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4449630795077,
+                        38.0762148018869
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Bordonaro ",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5114891224544,
+                        38.176313534904
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Camaro",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5328599977137,
+                        38.1870256872042
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Castanea delle Furie",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5188365101868,
+                        38.2629819710939
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Galati Marina",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5058470015941,
+                        38.1046698116347
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Giampilieri",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4701153074682,
+                        38.0671704899878
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Larderia",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5001254033402,
+                        38.1409580674734
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina 10",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477641593661,
+                        38.1745748256955
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina 15",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5481988303954,
+                        38.2330011802346
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina 2",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556103498961,
+                        38.2024036954879
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina 4",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5470748734781,
+                        38.1899611531381
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina 8",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5600678823454,
+                        38.2136945756344
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina Pistunina",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5236901136837,
+                        38.1442630297701
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Mili Marina",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5120076379096,
+                        38.1151128485129
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Pezzolo",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4567876699103,
+                        38.0839801838547
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Scala Ritiro",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5357669484075,
+                        38.2125752126171
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Torrefaro",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6354253642325,
+                        38.2661912911977
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste ltaliane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554778510571,
+                        38.1819220376983
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste ltaliane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5188546535942,
+                        38.2629620630972
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste ttaliane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4701311594334,
+                        38.0671895566256
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste ttaliane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5478612814565,
+                        38.1746872396905
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste ttaliane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5462896466696,
+                        38.175645549138
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Prestige",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511241118558,
+                        38.1826806743902
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Princi Dr. Gianluca",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5479684211302,
+                        38.1810574865142
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Principe",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509039153808,
+                        38.2304707430661
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Principe Umberto",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5450062578848,
+                        38.1944009020272
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Principe Umberto",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5450082567408,
+                        38.1944009110709
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Progresso",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5552753870249,
+                        38.1871085304859
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Punto G",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518356090991,
+                        38.1879071544653
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4929378802859,
+                        38.0776222463189
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4981752400008,
+                        38.0864195344352
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5014591457562,
+                        38.0945669425
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5301496224428,
+                        38.1552243221301
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5371465012596,
+                        38.1647726439379
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5772702332764,
+                        38.2410125235043
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5992124012323,
+                        38.2555032630493
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4795244257177,
+                        38.269402444937
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Qui",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461073045427,
+                        38.1727687158916
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Qui Conviene",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6342636960328,
+                        38.265006253699
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Raffa e Marchese",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4487401113713,
+                        38.242554948194
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Raffaele Giovanni",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509071944913,
+                        38.1913345992228
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ragno Emanuele e Stellario",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5514099188033,
+                        38.2071823476245
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Residence San Martino",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5466132652248,
+                        38.1782121538543
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Residenza Annunziata",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5527213286439,
+                        38.2212934983392
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ridi",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5490430384077,
+                        38.1793261254336
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ristorante Sporting",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6223674416745,
+                        38.2716791805401
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo Christian",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5308050171623,
+                        38.1526063182449
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo dello Stretto",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5589034131099,
+                        38.2106202091314
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo Extra",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526634955081,
+                        38.1826898729333
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo il Vero Kebab Lucas",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554559988162,
+                        38.1922543653737
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo la Scala ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4779713622207,
+                        38.2712105153963
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo Oasi 2000",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4767798750786,
+                        38.2706701265134
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo Terzo Tempo",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5973694973224,
+                        38.2615455206204
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Rizzo",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560809149789,
+                        38.2130801287643
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Robert Due",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522568711855,
+                        38.1891836747009
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Rodia",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4785536377762,
+                        38.2684932236841
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Rodia",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4773304210254,
+                        38.2693215826669
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Rosselli Dr. Antonella",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5424801146711,
+                        38.2059829751637
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Rossopomodoro",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5287545365861,
+                        38.1525017692956
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Royal Palace Hotel",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556635867656,
+                        38.1847167406502
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S. Cuore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5460170780067,
+                        38.1907829129353
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S. Francesco e Immacolata ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5513595899154,
+                        38.1979153882233
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S. M. Gallo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538682175172,
+                        38.1824036097927
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S. Maria Annunziata e S. Giuseppe",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5342238841972,
+                        38.1916354306246
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S. Maria di Porto Salvo dei Marinai",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526451169169,
+                        38.2027077105189
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S.e.b.a.r.",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5389818581961,
+                        38.1681030449771
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S.e.b.a.r.",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547160333123,
+                        38.1985475131072
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sacca Dr. Felice",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5392487182491,
+                        38.1686421015563
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Luca Evangelista",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542293413969,
+                        38.2041995981704
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Martino",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5491475131109,
+                        38.1801903083163
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Michele",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5247569998802,
+                        38.2249252733946
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Michele",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5246746462386,
+                        38.2249429810459
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Nicolò",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5501765540494,
+                        38.1813347179072
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Saba",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4951979283353,
+                        38.281434574875
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Saba",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.495960054318,
+                        38.2822132780008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sant'Agata ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5979732772625,
+                        38.2547807081264
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sant'Agata ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5983974565039,
+                        38.2548382362821
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Caterina",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538443431415,
+                        38.1878475741956
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Lucia ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5168754015656,
+                        38.1556039149861
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Lucia ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5175951447394,
+                        38.1562902454127
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Margherita",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4940635571128,
+                        38.0991517609595
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Margherita ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4937191311871,
+                        38.0991252315973
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria di Gesu",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406825399277,
+                        38.1712628771498
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria di Gesu",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546718781169,
+                        38.2066348090383
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria di Pompei",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498628514198,
+                        38.2002135709614
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria di Pompei ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5497179156363,
+                        38.2003448461077
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria di Porto Salvo",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5580709116482,
+                        38.2042085749213
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria la Nuova",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5495379726273,
+                        38.2034059210728
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria la Nuova ",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496139362862,
+                        38.2034072761857
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santi Pietro e Paolo",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448799877115,
+                        38.1714034586257
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santo Nicola",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5374766039729,
+                        38.1667424880309
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santo Stefano di Briga",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4776654231924,
+                        38.0994370770836
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santo Stefano di Briga",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4784785982174,
+                        38.1001720298695
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santo Stefano Mezzano",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4851374115725,
+                        38.1014792369546
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santo Stefano Mezzano",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.484499524365,
+                        38.1020449042308
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santuario Montalto",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5484940422876,
+                        38.1933326003828
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santuario S. Antonio",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5484396673724,
+                        38.183532814059
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santuario S. Maria di Montaìto",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482328130618,
+                        38.1933753627309
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sant’Elia ",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558029011296,
+                        38.1883465613212
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sapore Divino ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6313568909821,
+                        38.2620616423436
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sciaranira",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552275997223,
+                        38.1928934526667
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scisap Rent",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5489889063534,
+                        38.1856056499951
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scola Danza Koros",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532859900624,
+                        38.1851249243445
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scola Danza Koros",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532859786483,
+                        38.1851249243451
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Elementare Mario Passamonte",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5426441548946,
+                        38.1921306536516
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Elementare Paritaria D. Savio Messina",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482208370615,
+                        38.1912430615317
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Materna Paradiso",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5642277623945,
+                        38.2252129928862
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Materna Pezzolo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.458592866515,
+                        38.0854550770542
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Media Giovanni Pascoli",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534975499501,
+                        38.1998157220064
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Media Statale Verona Trento",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5508649702537,
+                        38.1948271657758
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4938743133971,
+                        38.1410068317854
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6395156771182,
+                        38.2650368624943
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria A. Manzoni",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5528503928369,
+                        38.1857576620851
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Beata Eustachia",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504270194957,
+                        38.1956398292969
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Buon Pastore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5471459516689,
+                        38.1950056997961
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Case Gescal",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5204959603124,
+                        38.171638331356
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Castanea",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5189609341582,
+                        38.2630525288041
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Cesare Battisti ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506446787549,
+                        38.2076495998235
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Collegio S. Ignazio",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496641823169,
+                        38.2057666766096
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Collereale ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443898839429,
+                        38.1785016512082
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria E. Castronovo ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4692606691572,
+                        38.2332364258152
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria F. Petrarca",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6050514113591,
+                        38.2588154738545
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Faro Superiore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5789247791096,
+                        38.2676679280211
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Fr. Galati Marina",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5508862182608,
+                        38.1844089498252
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Francesco Crispi",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539065382899,
+                        38.2019268898576
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Galatti",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493445230988,
+                        38.188036454043
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Ganzim Via Denaro",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6039187033524,
+                        38.2577675297959
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Ganzim Via Papardo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6026770361735,
+                        38.2561882605658
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Giampilieri Sup.",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4685676906776,
+                        38.0686687243713
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Giovanni XXIIl",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5373506413769,
+                        38.1630112245708
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Istituto Leone Xlll",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533645379519,
+                        38.2004888618571
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria L. Boer",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5541027908534,
+                        38.2046778367792
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria L. Radice",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5360187815273,
+                        38.2124524352766
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Larderia lnferiore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4994749806672,
+                        38.1413128994418
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Luigi Boer",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5465567679068,
+                        38.2084961662487
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Massa S. Lucia",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461315118819,
+                        38.2012337474353
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Michele Trimarchi",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5401769191919,
+                        38.1639061227851
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Mili San Pietro",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4960405966765,
+                        38.1221717238044
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria N. Tommaseo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55185385589,
+                        38.1864087702206
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Principe di Piemonte",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492312791092,
+                        38.1771537750359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Rione Montepiselli",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443271867658,
+                        38.1889846430749
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria S. Giovanni Bosco",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461598024768,
+                        38.1792276733164
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria S. Stefano di Briga ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.479135971364,
+                        38.1002276597631
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria S. Stefano Medio ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4831813401771,
+                        38.1018519672118
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Salice",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4910507169343,
+                        38.2502283547235
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria San Saba",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552029539026,
+                        38.2969205282035
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Sant'Agata",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5988512791936,
+                        38.2558014671053
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Santa Chiara",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511769902289,
+                        38.1977375969565
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Santa Margherita",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4938624637339,
+                        38.0993077660223
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria SpartĂ ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5133546636194,
+                        38.1174493059029
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Tommaso Cannizzaro",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496302978502,
+                        38.1872540681232
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Valle degli Angeli",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5390377061276,
+                        38.1705194484959
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Via Catania ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5451855859603,
+                        38.1794360423816
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Villagio AJdisio",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5259870499925,
+                        38.1704304440651
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Zafferia",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5209565519179,
+                        38.1455367973687
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria di I Grado la Farina",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516692652813,
+                        38.1948829097176
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria di I Grado S. Francesco di Paola",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551739699321,
+                        38.2191636550519
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria di II Grado E. Ainis",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5393525375106,
+                        38.1718594450071
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado A. M. di Francia",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5469593327756,
+                        38.1857780940625
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado Evemero da M. T. F.",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6151959719692,
+                        38.2592048834358
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado G. Leopardi",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5311529759538,
+                        38.1616627232211
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado G. Mazzini",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512106121968,
+                        38.1924626192435
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado Gaetano Martino",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5221247562133,
+                        38.1399822397399
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado Galatti",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493444089536,
+                        38.1880364540453
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado Giorgio la Pira",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5288077707347,
+                        38.186716838722
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado L. da Vmci",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5034510587335,
+                        38.0986277876452
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado Madonna della Lettera",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538789091414,
+                        38.2093281459981
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado S. D'Acquisto",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5301959615477,
+                        38.1503752642967
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado VannAntò",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.544391204029,
+                        38.2126635532191
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria II Grado Antonello",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552867669857,
+                        38.2083437602144
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria II Grado I. S. Bisazza",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.558470188977,
+                        38.2186483489507
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria II Grado Iti Marconi",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511341487535,
+                        38.197585450111
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sea Bar Torre Faro",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6419658014237,
+                        38.2662359363518
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sea Flight",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496540558887,
+                        38.1810263826947
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Seminario Arcivescovile S. Pio X",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5475819621041,
+                        38.212810437955
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Servizi Sport",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5478666109176,
+                        38.1962146445139
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Shanghai",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551823472052,
+                        38.1925854434932
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sharon ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516228177643,
+                        38.1844273900635
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Shawanna Iyad",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549292254141,
+                        38.1863438085427
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sicily by Car",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547680935538,
+                        38.1947594540777
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "sigma",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5224231708376,
+                        38.1409802780504
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "sigma",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539638790396,
+                        38.1888357839383
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Simply Market",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5657497041707,
+                        38.2291357381866
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Simply Viale Regina Elena",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5564403774575,
+                        38.2137995575389
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ski Center",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5535289977205,
+                        38.1843133479213
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sma",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419720416821,
+                        38.1722005755304
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sma",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.548528636535,
+                        38.1723431911819
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sma",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443101250282,
+                        38.1784732880823
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Snack Bar",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5278864549286,
+                        38.1484191645807
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spadano",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545824896313,
+                        38.2042962171628
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "SpartĂ ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5323140646466,
+                        38.2938011045558
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "SpartĂ ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5300381633953,
+                        38.2948341349055
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spatafora Salvatore",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534725186273,
+                        38.1907708016296
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spatari Dott. Antonio",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533133566716,
+                        38.1846752110862
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia del Lido di Mortella",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6307106522518,
+                        38.2719352084536
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Acquarone",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5515777484375,
+                        38.297311270633
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Briga Marina",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4973721950309,
+                        38.0853941535512
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Capo Rasocolmo",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.521419288134,
+                        38.2945668125454
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Casa Bianca",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5857714600992,
+                        38.2803835715453
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Galati Marina",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5091051342244,
+                        38.108504655921
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Ganzirri",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6102401164703,
+                        38.2575552294099
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Giampilieri Marina",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4810402692194,
+                        38.0647623468704
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Gimpilieri Marina",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4862037090637,
+                        38.0684681092764
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Mili Marina ",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5148282313869,
+                        38.117703099148
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Orto Liuzzo",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4551180735408,
+                        38.2559189688631
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Pace",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.573580018867,
+                        38.23696365902
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Rodia",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4747201135162,
+                        38.269412927754
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Salvatore dei Greci",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.560500234014,
+                        38.214026482961
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di San Saba",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4966605089548,
+                        38.2832747711012
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Sant'Agata",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5961989017655,
+                        38.2529220413425
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Torre Palazzo",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6317453947576,
+                        38.2618445385971
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia dOro",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6081006056063,
+                        38.2731047996947
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sport 4 Club 2",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545478306898,
+                        38.1840212177399
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sport Piu",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5423127054537,
+                        38.1896769725394
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sporting",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5029254795254,
+                        38.0977946327633
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Stadio",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5369022415253,
+                        38.1646855326902
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Stadio Giovanni Celeste",
+                    "category": "SportsActivity",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5371964216592,
+                        38.1647808751915
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Stadio San Filippo",
+                    "category": "SportsActivity",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.521289980423,
+                        38.1602681014356
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Strumenti Musicali Piparo",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5562883649793,
+                        38.204099270603
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Danza di Mariangela Bonanno",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5489403136196,
+                        38.1985988256255
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Dentistico",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5530109148771,
+                        38.1930028526078
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Dentistico",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.558835971356,
+                        38.2072240913464
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Dentistico Associato Campo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556920236308,
+                        38.205370030914
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Dentistico Associato Currò",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5475923037132,
+                        38.1916099910525
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio di Valutazione Medico Legale",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532993622619,
+                        38.182810804794
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Medico Cecconi Giusj",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548470527742,
+                        38.2022131906797
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Medico di Pietro Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5513636909621,
+                        38.1841902610805
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Medico Girbino Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511297209434,
+                        38.1847299759131
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Trattoria da Nonna Angela",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5980008938312,
+                        38.2545649130781
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Trattoria la Terrazza",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.60950608526,
+                        38.2581235916978
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Trattoria Mar.Belli",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5508103106686,
+                        38.1865308443852
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tremestieri",
+                    "category": "Rest Area",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5176755529869,
+                        38.1319473141996
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tremestieri",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5217821068278,
+                        38.1380354121035
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tremestieri",
+                    "category": "Railway Station",
+                    "type": "Rail_Station"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.524603341568,
+                        38.138183464889
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tremestieri",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5229452597431,
+                        38.1424112080494
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tremestieri Ovest ",
+                    "category": "Rest Area",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5158471888299,
+                        38.1440964289278
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tuodi",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5458824858397,
+                        38.1816805074806
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "U.S. Antonello",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5377012497432,
+                        38.2133739841173
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uanella",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548577946589,
+                        38.1998520752866
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UbertĂ ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5587654266375,
+                        38.2069008752458
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ubreria Editrice Genal",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551806050486,
+                        38.1879829898782
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ubreria Michele lntilla",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5528154896304,
+                        38.1908057150305
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uci",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5207771168125,
+                        38.1363952201795
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Udo Spiaggia dOro",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6117392425134,
+                        38.2727209920684
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uffici Giudiziari",
+                    "category": "CourtHouse",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511629889443,
+                        38.1882878735645
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uffici Giudiziari",
+                    "category": "CourtHouse",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517758148315,
+                        38.1902790367369
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale C.so C. B. Cavour",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518353599187,
+                        38.1932652593264
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Strada San Giacomo",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534911534899,
+                        38.1918834950991
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via C. Battisti",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5469876640575,
+                        38.1824034217855
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Chione",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5457465958621,
+                        38.1869989877841
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Monte Scuderi",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.546299356948,
+                        38.2116218547855
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Nicola Fabrizi",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559872962507,
+                        38.1844238098027
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via P. Castelli",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406673537042,
+                        38.1932630022434
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Palermo",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5380060070784,
+                        38.2119289235332
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Risorgimento",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534977074863,
+                        38.1874161046964
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Santa Cecilia",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519903923082,
+                        38.181670084546
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Uberto Bonino",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5392790820598,
+                        38.1649935384349
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Vecchia Comunale",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5372562860737,
+                        38.1655958650816
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via XXVII Luglio",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5514806688818,
+                        38.1861851029522
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uni Euro ",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5233059588073,
+                        38.1435015057893
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5515792108876,
+                        38.1831786273158
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5540578436159,
+                        38.1848416347573
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550140847851,
+                        38.1894244899852
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550519121151,
+                        38.1894456594704
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549708329024,
+                        38.1895096348436
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496161253284,
+                        38.1896741458111
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544512909705,
+                        38.1896897627291
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5562457611362,
+                        38.2005893107435
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542504392358,
+                        38.2045845605358
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5590083515951,
+                        38.2112884650127
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477189454469,
+                        38.211742457345
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5594831783428,
+                        38.2176714360379
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5633043668593,
+                        38.2199925083008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca di Roma",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544221955202,
+                        38.1894377160645
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Unipol Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550307790038,
+                        38.1841384354584
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Unipol Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5586855848546,
+                        38.2066176022096
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniversitĂ  di Messina",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506955967005,
+                        38.1887615185711
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniversitĂ  di Messina ",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5952024875408,
+                        38.2609835596595
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniversitĂ  di Messina Farmacia e Veterinaria",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504257496504,
+                        38.2302495820164
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniversitĂ  di Messina-Scienze",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.596863283307,
+                        38.2608014071701
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uomo Club",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5543374538274,
+                        38.188741564966
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uons",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506118272368,
+                        38.2041726765899
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Up To Date",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5540567392678,
+                        38.1836570488743
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vadala Candeloro",
+                    "category": "Vehicle Repair Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498971218682,
+                        38.1861996890868
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Valle degli Angeli",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368324244472,
+                        38.1702622263144
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Velia ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552518094949,
+                        38.183948747058
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Verdura Salvatore",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516193820355,
+                        38.1843524000862
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Veterinaria",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485091346586,
+                        38.2310863107306
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Alessio Valore",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5595625634678,
+                        38.1874154803248
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Calabria",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5594707015066,
+                        38.1864693839211
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via del Santo",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5415924785786,
+                        38.1781556884959
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Enrico Fermi",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5390216181153,
+                        38.1622683016901
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Enrico Fermi",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5385050308019,
+                        38.1626377550426
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Giuseppe la Farina",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5563004715035,
+                        38.1841193818267
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Giuseppe Natoli",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548555687009,
+                        38.1835088380022
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Santa Cecilia",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556794544183,
+                        38.1790254919807
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Stazione",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5582033501275,
+                        38.1849779814292
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via XXVII Luglio",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555117757413,
+                        38.1838497872266
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Annunziata",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5617521454509,
+                        38.2181009074337
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Annunziata",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5619603796296,
+                        38.2183258033534
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5505095088371,
+                        38.178128409594
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5491100814544,
+                        38.1789175841491
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5473858623075,
+                        38.1795612909096
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5471317021909,
+                        38.1798609953084
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5428564206561,
+                        38.1820992028878
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5420081202704,
+                        38.1825790644878
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5476836852052,
+                        38.1795706806585
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5414622543725,
+                        38.1828534138502
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Giostra",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5567115999681,
+                        38.2063094707239
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Angela",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5072720197601,
+                        38.1055341575105
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Dante",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5426245599465,
+                        38.1726334740677
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Dante",
+                    "category": "Park (City/County)",
+                    "type": "Regio Nat State Park"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5435830534037,
+                        38.174250353833
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Mazzini",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538028051655,
+                        38.1973720145668
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Mazzini",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546931701761,
+                        38.1980799305801
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Mazzini",
+                    "category": "Park (City/County)",
+                    "type": "Regio Nat State Park"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542644970598,
+                        38.1982283322008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Morgana",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6202193047691,
+                        38.263573914931
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vinci Via Catania",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5437851082555,
+                        38.1766354837458
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vinci Via Giuseppe Garibaldi",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556693825739,
+                        38.2030617397408
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vinci Viale Principe Umberto",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5479880753452,
+                        38.1972118597972
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vittorio Emanuele ",
+                    "category": "Theatre",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548414172069,
+                        38.1955115318462
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vivifit Centro Fitness",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6216538781409,
+                        38.2613104219038
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Voglia di Pane di Impoco Antonino",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5449987934442,
+                        38.1910020706298
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vola Palace Hotel",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4460658842289,
+                        38.2433811232125
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Volo Food Drink",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5531756808452,
+                        38.1916950860638
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Xstore",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55166151882,
+                        38.1832669809049
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zafferia",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5050346764312,
+                        38.1518787896341
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zafferia",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5072201906703,
+                        38.151983279883
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zanghi Dr. Letterio",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498393202176,
+                        38.1832464636887
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zingales Dr. Giuseppe",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.526279545153,
+                        38.1723491280017
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zodda Angelo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525169333552,
+                        38.1785096642632
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zona Artigianale Ponte Gallo",
+                    "category": "Industrial Complex",
+                    "type": "lndustrial_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4485834921004,
+                        38.2424085174864
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zona Artigianale Ponte Gallo",
+                    "category": "Industrial Zone",
+                    "type": "Industry"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4478644203992,
+                        38.2428227491759
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zuiki",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532624412444,
+                        38.1850658345941
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5107818234629,
+                        38.2818791188834
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5111498039966,
+                        38.2685919951373
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5056126373036,
+                        38.2803221341406
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4894017187199,
+                        38.2733851108389
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.502221195375,
+                        38.2694635282884
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5005993830532,
+                        38.2760616117849
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4995329245695,
+                        38.2818683205641
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5149415924456,
+                        38.2925519268494
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5233751929904,
+                        38.2949335835413
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5241107581395,
+                        38.2696121444226
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4747120591527,
+                        38.2491595733598
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5277234905383,
+                        38.2829527290488
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5574231103001,
+                        38.2886572396089
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5591295244413,
+                        38.2637738380369
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.464900576113,
+                        38.2543191362326
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.540581239513,
+                        38.2727898737723
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482731304455,
+                        38.2844142151521
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.542269260273,
+                        38.2600533203343
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5129487504671,
+                        38.2544305374279
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.53306407591,
+                        38.2017504078724
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5189689652048,
+                        38.1959068878751
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5000647081072,
+                        38.137342070797
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4875018289484,
+                        38.2687035605982
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4975006719007,
+                        38.2668352889877
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4791012125718,
+                        38.2651832733988
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546657029525,
+                        38.2806761781646
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443830786154,
+                        38.2971107995307
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5394246160319,
+                        38.2103961676187
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.561360752229,
+                        38.2594496088082
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4899583934744,
+                        38.2364216133143
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526624990206,
+                        38.2480698093592
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519944172887,
+                        38.2637870833382
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5746563898537,
+                        38.2569089578717
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566858286437,
+                        38.2503439053559
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5657816326819,
+                        38.2712726743644
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5341074852629,
+                        38.2306083267553
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.509773761628,
+                        38.1556874217097
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553415056308,
+                        38.2135369376268
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5103798502909,
+                        38.1539713294724
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4704155252689,
+                        38.2434726527313
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4700676889692,
+                        38.2370134390299
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4723831803256,
+                        38.1244738675135
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4842741295897,
+                        38.1385017825937
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5131934752533,
+                        38.1375080804883
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4888429128137,
+                        38.1692971328292
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4818172626491,
+                        38.1651895073523
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5192832163452,
+                        38.2151980140053
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4835743458812,
+                        38.2194698836646
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4853134035033,
+                        38.2575081466897
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5204543376577,
+                        38.2252498607127
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5102434837057,
+                        38.1881706258913
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5203159807295,
+                        38.2076273700179
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5408990698765,
+                        38.1584882416036
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.50111734943,
+                        38.0933604595779
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4984473535391,
+                        38.2848535406462
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5412576260481,
+                        38.2962329723205
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.451808085663,
+                        38.2539052444143
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.474018965749,
+                        38.2689853162528
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5611355604291,
+                        38.2139385484871
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6093958046836,
+                        38.2751836000225
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5934437309442,
+                        38.2478678848772
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5257328064158,
+                        38.1514100308085
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5229815236317,
+                        38.1794082964126
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.52261068538,
+                        38.1781683939567
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4655745831444,
+                        38.2507811442759
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448741635612,
+                        38.2061410341932
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5180309780985,
+                        38.1746857152798
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5184193237675,
+                        38.1748874596342
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443344963442,
+                        38.2071305780731
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.526191307653,
+                        38.187569294106
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5258263733457,
+                        38.1872452017822
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5255974789881,
+                        38.1873086088388
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5259908365827,
+                        38.1876416601204
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5129012996768,
+                        38.1612290334081
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5126863970896,
+                        38.1613876119318
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.526920336906,
+                        38.1503299671945
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547104644132,
+                        38.1046367948107
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5267153982309,
+                        38.1885973802461
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5129188995452,
+                        38.1618813827136
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5268911699871,
+                        38.1884422574525
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.498576711086,
+                        38.2339294595798
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5121349770892,
+                        38.1583089939637
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5449299273099,
+                        38.2042727170004
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5447470251707,
+                        38.204557090155
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5444917368025,
+                        38.2063182718488
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5120387916659,
+                        38.1586051081703
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5265284427188,
+                        38.1879347416725
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5193882484494,
+                        38.1751733194118
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5261760317724,
+                        38.1878291300605
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.526407205727,
+                        38.1881051131671
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5128579587805,
+                        38.1606765283226
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4678865719354,
+                        38.2501515020912
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4703019571855,
+                        38.248353336652
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5127270268074,
+                        38.1621403927238
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5231600577872,
+                        38.1790581459629
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5233442181692,
+                        38.1799936744206
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4680775237617,
+                        38.249871208403
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4766210724536,
+                        38.0627957634089
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4759482737173,
+                        38.0617530003574
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.528512817471,
+                        38.1932481341556
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.526653427724,
+                        38.2191951936429
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4520405483813,
+                        38.2471140796647
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.518439679007,
+                        38.2244917284089
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5152635225663,
+                        38.2257095417118
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5139487004034,
+                        38.2261915428916
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5145117142324,
+                        38.2259859232038
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5138863563511,
+                        38.2250003468348
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5156445535003,
+                        38.2242251864531
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5203282915521,
+                        38.2225068993353
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5209235876712,
+                        38.2231699497944
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5165873638792,
+                        38.2238064203008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5184073778338,
+                        38.2230527108615
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4728079557137,
+                        38.0551263714417
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5231295078689,
+                        38.1820590732295
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5230691916796,
+                        38.1840059574549
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5230357062062,
+                        38.1838058721593
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4791707517797,
+                        38.2205174306975
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4830084802309,
+                        38.2173165710431
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5225304292392,
+                        38.221784966897
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5287153350243,
+                        38.2161842488374
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5274005392689,
+                        38.2188788038259
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5280841493226,
+                        38.2181455958974
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5269961495867,
+                        38.2188169331434
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5232701492219,
+                        38.2213121695578
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.524322729424,
+                        38.2207287354211
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5271134342084,
+                        38.2191723556111
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5051010471512,
+                        38.2285209507603
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.475942824971,
+                        38.244163772223
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4746532287614,
+                        38.2446525554158
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.47704939739,
+                        38.0630365653445
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4749948253607,
+                        38.0586888281987
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5228635571647,
+                        38.1821984999428
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5279025636451,
+                        38.1914087931888
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5276052101423,
+                        38.1912610246584
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5274275272222,
+                        38.1904100660717
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5287781638275,
+                        38.190970186175
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4914706301503,
+                        38.0797018988864
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4912610272403,
+                        38.0784876068972
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4927570739273,
+                        38.0820022569805
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4884275483294,
+                        38.0728439125563
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4956377403159,
+                        38.0883053398408
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.540710672996,
+                        38.1876272043176
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Brunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5319779389484,
+                        38.1957284658747
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4930889150881,
+                        38.0821223328899
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5431475961051,
+                        38.2018935585372
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4911565896278,
+                        38.0795325736757
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5404127249052,
+                        38.189365193455
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4910130412729,
+                        38.0784979456939
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4872777422428,
+                        38.0717589365974
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4963272462422,
+                        38.0894523166154
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4525275900911,
+                        38.2474828967245
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4543410304691,
+                        38.2476735516396
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406340951491,
+                        38.1885065340946
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4878171398583,
+                        38.0728160730659
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4531754860123,
+                        38.2473984621696
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5309056817786,
+                        38.1949380192729
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4553269708524,
+                        38.2475599907365
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4944295885412,
+                        38.0852174788576
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4964430976611,
+                        38.0900018306525
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5303778061481,
+                        38.1948535700008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5136412141691,
+                        38.170201785758
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406360262777,
+                        38.1871403571375
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4944966881077,
+                        38.2077088625751
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.506446359894,
+                        38.1976534340644
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4997428681113,
+                        38.2032749180515
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4777735070082,
+                        38.0640873451109
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4849043311204,
+                        38.0703233762659
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4841003458031,
+                        38.0695573991403
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5224692603515,
+                        38.1775871095708
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5127116876404,
+                        38.1652522083161
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5216988813241,
+                        38.176654168704
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4985458950787,
+                        38.0930916487234
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5135589097825,
+                        38.1698465279993
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4983569414826,
+                        38.0932404332124
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.521789478556,
+                        38.1770724429405
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4958054047696,
+                        38.0890379091773
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5130871984853,
+                        38.1676358823247
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5133262414892,
+                        38.1675479311154
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5138187315913,
+                        38.1698577387781
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.49454006427,
+                        38.0864865384212
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4723704243232,
+                        38.2262085278691
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4923345274017,
+                        38.0811791505047
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5008024600206,
+                        38.0983458507902
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.51296302307,
+                        38.1653286863186
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5129317358399,
+                        38.164835386263
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5233478287785,
+                        38.1801786248896
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5139012243093,
+                        38.1701880062486
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5017183483642,
+                        38.0996093440559
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4947590144305,
+                        38.0865052238851
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4764220504474,
+                        38.0622057177527
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5425666191621,
+                        38.2015801305692
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5410362903393,
+                        38.2001742775593
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5373149623331,
+                        38.1913459960867
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.501468182031,
+                        38.0996089264454
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4719105724592,
+                        38.0543857717816
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5384446774806,
+                        38.2230876163316
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5098337985328,
+                        38.227687970328
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.508682549744,
+                        38.2272437283186
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4858602240132,
+                        38.2149407465258
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4865040257462,
+                        38.2144039530036
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.52836431357,
+                        38.2166691027373
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5276174509843,
+                        38.2178551842818
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4768387685581,
+                        38.2434782159989
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4758299336897,
+                        38.2439769507065
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5385232634557,
+                        38.1565113547995
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541004762811,
+                        38.1597534673161
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5331228807353,
+                        38.1497032058405
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5015718353133,
+                        38.0970532471696
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5125810624625,
+                        38.1175656502453
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5138507328621,
+                        38.1202189727869
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.522110539152,
+                        38.190532525023
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5157542130807,
+                        38.1911779344139
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5140803194647,
+                        38.191387937547
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5333589643443,
+                        38.1742200741416
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5267440819691,
+                        38.1405111506359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.521000007891,
+                        38.1315450023142
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5386609755943,
+                        38.1856858130594
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5442163948176,
+                        38.1640344971603
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4925296730303,
+                        38.0799455046039
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4907193283484,
+                        38.0762783835517
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.487311311043,
+                        38.0712792658918
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.486308506608,
+                        38.0703649150225
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5327740844098,
+                        38.1925072363995
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5108405590017,
+                        38.1150434313276
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.477019517766,
+                        38.0613098297074
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.537880566692,
+                        38.168460777911
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5359279629809,
+                        38.180891510054
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5158574850393,
+                        38.1232289328224
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.517632034208,
+                        38.1260912119305
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5027994699435,
+                        38.1004310984554
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.560481617711,
+                        38.1852305607957
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5367852547303,
+                        38.1843183432388
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5056147333073,
+                        38.1077141561919
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5297277953294,
+                        38.1918618121075
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5297420098091,
+                        38.1450943618991
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5280977737802,
+                        38.1426292137228
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549861287998,
+                        38.171513737707
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.534707729668,
+                        38.1768154606783
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4950485930121,
+                        38.0853070166696
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5396472061803,
+                        38.190136338249
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4806630865579,
+                        38.0658327310414
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4774489724039,
+                        38.0620315727131
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4766501137896,
+                        38.0605783704228
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4750462813965,
+                        38.0556223666908
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4611869564975,
+                        38.2322219869451
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5349444317524,
+                        38.1698008502097
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4993404398728,
+                        38.0928876621272
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560813064883,
+                        38.179928516745
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5436371926627,
+                        38.1680650099676
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5138309002016,
+                        38.1915450437035
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5229609622229,
+                        38.1344406238362
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5336657382764,
+                        38.1715266367567
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4864600077085,
+                        38.0693529866941
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5753165257886,
+                        38.2406664934859
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5955034182639,
+                        38.2581929437535
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5415313528331,
+                        38.1827037900026
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5078667617697,
+                        38.1536097202411
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5014599280057,
+                        38.0909842315186
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5503578180337,
+                        38.2200108856442
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5232421307396,
+                        38.143348262019
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5985721120609,
+                        38.2683048014158
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5162196142132,
+                        38.161893811946
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.520921063941,
+                        38.1367957502826
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5014599839925,
+                        38.0908941399829
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5503578066142,
+                        38.2200108856445
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5255794340801,
+                        38.1473317673775
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5253023011066,
+                        38.1469626031161
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5486792723197,
+                        38.1789125702239
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5290408785427,
+                        38.1701738170623
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5256202822882,
+                        38.1540195666499
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5934968558429,
+                        38.2627379536719
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496306514021,
+                        38.1894702852543
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5232485184597,
+                        38.1715652311663
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5428661966221,
+                        38.1819952851469
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498698766064,
+                        38.1785092822047
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5414660147697,
+                        38.1674309006378
+                    ]
+                }
+            }
+        ]
+    },
+    "total": 1531,
+    "count": 1531,
+    "page": 0,
+    "totalPages": 1,
+    "nextPage": true
+}
\ No newline at end of file
diff --git a/src/assets/map/map-component-maps/cameras.json b/src/assets/map/map-component-maps/cameras.json
new file mode 100644
index 0000000000000000000000000000000000000000..4770294adb93743ff11467820b1409071366f284
--- /dev/null
+++ b/src/assets/map/map-component-maps/cameras.json
@@ -0,0 +1,2056 @@
+{
+    "results": {
+        "type": "FeatureCollection",
+        "features": [
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "8063052b-5ade-46e5-a585-c3e5909f7eb2",
+                    "name": "01test"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.542883298405206,
+                        38.21255432917625
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "631f90bc-63c2-4ae5-8324-75b3c6eca31a",
+                    "name": "Coppa Giro ITALIA"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.555448374095693,
+                        38.19793916134786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "86909055-15ba-496d-b40d-055f10989f04",
+                    "name": "Cortina del Porto"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.56092143058777,
+                        38.18776975756049
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "dd3470eb-7b38-4a46-88f5-e08440db2f13",
+                    "name": "GALLERIA VITTORIO EMANUELE - Braccio Nord"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "e15a0f89-4162-4d22-aeba-6e9af5c741d9",
+                    "name": "GALLERIA VITTORIO EMANUELE - Braccio Nord 2"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "55f2c9ae-1efb-45f4-aee5-e94fde99d4c7",
+                    "name": "GALLERIA VITTORIO EMANUELE - Braccio Nord 3"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "b456887d-a0bf-4b0b-99cf-b76548cb3dd8",
+                    "name": "GALLERIA VITTORIO EMANUELE - Braccio Sud"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "61f213fd-fc51-4ba5-a89e-9cf40e475d60",
+                    "name": "GALLERIA VITTORIO EMANUELE - Dome Galleria"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "34517509-44e7-45c0-a04f-c32507aca922",
+                    "name": "GALLERIA VITTORIO EMANUELE - Ingr. Via Munizione"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "3a8188d2-e70c-45d7-896d-73978b7a5bc6",
+                    "name": "GALLERIA VITTORIO EMANUELE - Ingr. Via Oratorio"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "617c8a3a-b26f-4742-900b-b508aa410065",
+                    "name": "GALLERIA VITTORIO EMANUELE - Ingresso Piazza Antonello"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "139e8b39-a72e-484a-8d8c-b5b544fbeb1e",
+                    "name": "GALLERIA VITTORIO EMANUELE - Portico Est"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "c092e81e-a411-4993-9a5d-d5f56321b73c",
+                    "name": "GALLERIA VITTORIO EMANUELE - Portico Ovest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "17f12cb8-9a87-4d3f-a3b8-503a6ff89c3a",
+                    "name": "GALLERIA VITTORIO EMANUELE - Scalinate"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4313096,
+                        38.2418786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "bc85ab1d-74f3-45fc-b925-f53d3c78467e",
+                    "name": "Garibaldi - Battisti"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.540806441344708,
+                        38.17879594842073
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "0031e54a-b5c1-4c16-97ab-5df8a17431f3",
+                    "name": "Garibaldi-Loggia Mercanti"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541681418567444,
+                        38.19520910966484
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "bb6c0765-4d5d-4a68-bed2-fa06686923ff",
+                    "name": "Imbarcadero MetroMare"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55554542163607,
+                        38.213225139352495
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "e50cbb03-65fe-4264-9525-cd6e4a566b86",
+                    "name": "LT LargoMinutoli"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556993813994293,
+                        38.19363647616078
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "ac930777-67ff-4aa4-acac-368e255ac01b",
+                    "name": "Lt Garibaldi"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.557605336979302,
+                        38.199267826543434
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "5df7c469-1d4a-447a-af0e-67a042277529",
+                    "name": "Meta Europa-LaFarina"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.53293916865318,
+                        38.180439783163024
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "ec40e539-b5a1-465e-aa23-fa6a5fb2870e",
+                    "name": "Meta Pugliatti-Tribunale"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.535653516222435,
+                        38.20422132507112
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "ddd84b31-c600-48d8-88ec-996daa50c44e",
+                    "name": "Meta Viale Europa"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.535761532866573,
+                        38.196651702207504
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "c902def4-44a0-4bb4-88b8-db45b9794cca",
+                    "name": "Meta-CapolineaGazzi"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553313622348176,
+                        38.18791294607711
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "b0998fbe-a735-415f-a8b8-0b9fd40b5cab",
+                    "name": "Meta1-Boccetta"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.535419859259338,
+                        38.19464150268826
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "1e80a437-9603-4b88-980a-183107d76f0f",
+                    "name": "Meta1-Imbarcaderi"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.560836837410188,
+                        38.205902682845796
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "afc28447-7c9a-4abe-89d3-0892839ec364",
+                    "name": "Meta1-SanMartinoCamiciotti"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.542036548701578,
+                        38.18496948578918
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "5337db5a-990a-4550-af55-3914d7b12291",
+                    "name": "Meta1-Stazione"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.544299014905413,
+                        38.206388002759866
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "840c0b31-a4c7-4cea-9a94-489932814fad",
+                    "name": "PERIMETRALE ZANCA - Cavour nord"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554625,
+                        38.1942278
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "09af5557-de6e-4a0d-86e6-c4ea21c18c4f",
+                    "name": "PERIMETRALE ZANCA - Cavour sud"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545833333333,
+                        38.1941611
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "c525b715-cccb-4ea1-b778-78e3288a6394",
+                    "name": "PERIMETRALE ZANCA - Consolato mare"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550305555555,
+                        38.1935417
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "64422e3c-58b5-4146-a704-e0e567416b69",
+                    "name": "PERIMETRALE ZANCA - Prospetto nord"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559388888888,
+                        38.1942472
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "bdcfceea-7f77-44f3-a44d-561328025d9a",
+                    "name": "PERIMETRALE ZANCA - Prospetto sud"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558694444444,
+                        38.1935778
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "e968a546-1f22-4747-a814-df93422b13aa",
+                    "name": "PERIMETRALE ZANCA - San Camillo valle"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551222222222,
+                        38.1944444
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "d8c92d1e-f5b0-48cd-a160-d64bad53924e",
+                    "name": "PERIMETRALE ZANCA - Scalinata nord"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560833333333,
+                        38.1943417
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "d74c7db0-43c7-4be9-bb35-7da31e682a31",
+                    "name": "PERIMETRALE ZANCA - Scalinata sud"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559944444444,
+                        38.19345
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "e8aabbae-dfe1-4e13-a8dc-ca9a580ea7c0",
+                    "name": "PERIMETRALE ZANCA - Uff. tecnico"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559388888888,
+                        38.1945528
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "1e1cc271-7bab-491d-87a3-4bc19cd0d604",
+                    "name": "Palazzo Zanca - Incrocio Argenteri"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.523355,
+                        38.1666545
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "20640592-47df-49c2-8e63-03f493e5bbdb",
+                    "name": "Piazza Cairoli_01"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.555793234465622,
+                        38.1863679551653
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "d85b4c00-7ed1-4ca9-872c-ed9fcceeee07",
+                    "name": "Piazza Cairoli_02"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.531823482097327,
+                        38.17618528309719
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "98fc6dc6-b0d4-4f98-b178-902372026001",
+                    "name": "Piazza Cairoli_03"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554777895319113,
+                        38.20325247530364
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "738c7c04-025d-40b3-b473-51be6ba3c15c",
+                    "name": "Piazza Cairoli_04"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54026505566421,
+                        38.19522440304053
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "8373e9df-4bc7-459f-a542-d18699f2fbd5",
+                    "name": "Piazza Duomo - Battisti"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541054923894846,
+                        38.188205350758395
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "0a406941-7078-40d0-83e4-ba28fbfdc765",
+                    "name": "Piazza Duomo - Campanile"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.545958787640252,
+                        38.193497185981805
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "640669aa-6ba2-4153-8c7c-23963e254387",
+                    "name": "Piazza Duomo - Cavour"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551291097648793,
+                        38.21310201047027
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "c4f59c44-a88d-4810-bbd2-97851ee9f18a",
+                    "name": "Piazza Duomo - Ingressi"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556069736619555,
+                        38.18496184707282
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "02f84b8a-5f0e-4131-87d6-e181b53da364",
+                    "name": "Piazza Duomo - S.Giacomo"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.544937751895713,
+                        38.19971871146033
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "1855f6e9-0ac1-4e7e-9170-a01cbc3dcfb8",
+                    "name": "Piazza Duomo - Taxi"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.535361819339082,
+                        38.214478418544665
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "d6d74505-3d02-4e8e-a86f-abaf7cca47b2",
+                    "name": "Piazza Duomo - UniversitĂ "
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549619285869875,
+                        38.189677901547405
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "cda1bbeb-4dd5-4d2f-b5f7-1901a147f032",
+                    "name": "Piazza Duomo - Venezia"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550745345005952,
+                        38.200424532662424
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "7e7d1189-0229-4f14-85fd-fa09e8749857",
+                    "name": "Piazza Duomo - Via I Settembre"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.542650981237998,
+                        38.198307015311144
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "269f0402-d8c5-4749-b813-8cec6f679761",
+                    "name": "Piazza Duomo PTZ"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.531920250369854,
+                        38.19027191847448
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "ee5fd8ba-097e-4757-ad9e-235b0c63164a",
+                    "name": "Piazza Marinai Segesta"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.540492609848139,
+                        38.190222277802896
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "f1d8b3a0-03b6-45cb-90a9-0176346058b2",
+                    "name": "S. Agostino - Piazza Antonello 1"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553066203108717,
+                        38.2068003994166
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "8b813788-9c91-44e9-94c4-e068e10c3ec9",
+                    "name": "S. Agostino - Piazza Antonello 2"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54424739716891,
+                        38.1892480490524
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "96c97fd1-9a2c-4e7e-a8f0-4c315deccd9d",
+                    "name": "S. Agostino - Piazza Antonello Provincia"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55372215485676,
+                        38.208937642039906
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "eec6076a-d495-4b0b-a3c0-b5ccc0ed45db",
+                    "name": "S. Agostino - Piazza Antonello salita"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55265,
+                        38.1942
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "f27ee948-2e7e-42e7-93d5-537c752c52ed",
+                    "name": "S. Agostino - Via XXIV Maggio 1"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550721988754741,
+                        38.20031247491738
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "f1fde509-d005-4dc9-96b3-3cc7123273f3",
+                    "name": "S. Agostino - Via XXIV Maggio 2"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.557147641546573,
+                        38.20773322489378
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "8396d43a-11e2-4ca0-8a5d-d7a619036b44",
+                    "name": "S.Agostino-02"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.544548365996036,
+                        38.18122906518306
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "b8888a6b-7822-45c5-b7b2-82b821379c68",
+                    "name": "S.Agostino-03"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.53863308358234,
+                        38.18107920204337
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "80ebd51d-0a7f-4e3a-b181-9efa40bb2468",
+                    "name": "S.Agostino-04"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.53297717827217,
+                        38.21340257610093
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "cea81948-4071-42df-9c5b-9f214920b733",
+                    "name": "S.Agostino-05"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.548591440734818,
+                        38.17558500418485
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "6ffa257d-f8c8-4558-a52c-e5a2fa2202fa",
+                    "name": "Stadio-50"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.520608047391237,
+                        38.16172895351282
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "2c9d3224-712e-40c7-9573-be938a4f8341",
+                    "name": "Stadio-51"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.520608047391237,
+                        38.16188501254682
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "8361bde0-81f8-45c3-8db2-86a8d8c33968",
+                    "name": "Stadio-52"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551293424227765,
+                        38.17867628607614
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "883c439b-9024-402b-9de7-3af98e10fd28",
+                    "name": "Stadio-53"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.534986092991309,
+                        38.19923769479712
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "1bc5046c-d72b-47ec-9793-3d0e99a6ea0e",
+                    "name": "Stadio-54"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54739213070456,
+                        38.18474530955064
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "d0b3f112-6237-4c86-9a48-9947b899d2a8",
+                    "name": "Stadio-55"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54024897995801,
+                        38.17673991284892
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "c384e6a7-4164-4143-883a-2073c146d74f",
+                    "name": "Stadio-56"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.535051728635421,
+                        38.19204703237264
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "28945985-07ae-455a-a387-bb6e1c306519",
+                    "name": "Stadio-57"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5350161607891,
+                        38.184049569157764
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "4813af84-82f7-4b68-a9a4-077fa4251122",
+                    "name": "Stadio-58"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552029418055076,
+                        38.190153285947474
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "d9424788-deee-4b27-b08d-6075fcc8dc33",
+                    "name": "Stadio-59"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.548197774098524,
+                        38.213012545622966
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "06e2dd50-b1c1-41aa-b106-050b1bd3a2f9",
+                    "name": "Stadio-60"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.533048607197836,
+                        38.20903597191497
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "2117b273-6788-4b16-a346-05b6ad51c269",
+                    "name": "Stadio-61"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.538050132056641,
+                        38.1819147565286
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "a6d689bb-bd4a-497d-b17e-e5f991ff6b1a",
+                    "name": "Stadio-62"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552460486970322,
+                        38.20329119520324
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "7fd2b839-2d0f-4224-82e6-1b40d9535d0c",
+                    "name": "Stadio-63"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.53498292808136,
+                        38.20919244824515
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "201e7320-bc4a-4f1d-86e3-f96eec3e1add",
+                    "name": "Stadio-64"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.540321429069552,
+                        38.213703532276845
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "85855c4c-3ea7-4ea2-aa0b-26f128f4cdc9",
+                    "name": "Stadio-65"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.545292930128781,
+                        38.188406189991994
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "d4e3024c-0597-40b4-b696-4eaa210a2f6f",
+                    "name": "Stadio-66"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547070715675058,
+                        38.20740808166085
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "26331789-2cfa-42bf-87ef-13db4e2551c7",
+                    "name": "Stadio-67"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.543885073346877,
+                        38.183430071976915
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "12b7f914-95ff-4673-88cc-1ac1a3e0fc23",
+                    "name": "Stadio-68"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.531731339993785,
+                        38.20761973828419
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "4658630d-6844-4a56-a210-0ff8977d9b4e",
+                    "name": "Stadio-69"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.535020024433377,
+                        38.19420189442064
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "1c8e7ca2-f31a-41a1-849c-beb8a66c02be",
+                    "name": "Stadio-70"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55663444527254,
+                        38.2033550282773
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "e3739406-25c6-42f4-80fe-7297904fa9c6",
+                    "name": "Stadio-71"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550902711015882,
+                        38.21254742384169
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "c8189bc0-c3e4-41f7-8589-a6be6ada7c14",
+                    "name": "Stadio-72"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.536942479806125,
+                        38.17697565376141
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "855a216b-ac6a-4589-955d-e5525a1c2d6e",
+                    "name": "Stadio-73"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.535448098230754,
+                        38.18287385177569
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "192892c0-efff-4671-8f51-570118ec72b9",
+                    "name": "Stadio-74"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.53541601439447,
+                        38.18965672642197
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "e5158d19-7a15-4021-b92a-0f1795837bf0",
+                    "name": "Stadio-75"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.536401339526833,
+                        38.19251316164156
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "5574677b-bbef-4d08-8e26-88f4202ab4dd",
+                    "name": "Stadio-76"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.555795792097125,
+                        38.189564932649745
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "6741a9ee-3cb0-422c-83ea-590fe474d96c",
+                    "name": "Stadio-77"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5421030864405,
+                        38.21205662898998
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "bfe8f50d-7b9c-4be2-b914-d42b87b3f46b",
+                    "name": "Stadio-78"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541947191770351,
+                        38.18444471329864
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "8f7e5c80-64df-40ee-88c4-5f4ba5e5f1c1",
+                    "name": "Stadio-79"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.536542486920041,
+                        38.1893489454546
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "7c95fa3e-5295-4b58-9cd8-fe1ce8457204",
+                    "name": "Traffico 1"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.538304366847717,
+                        38.19231680714359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "5cf1c120-8f7d-4d59-8570-3be583e62850",
+                    "name": "Traffico 10"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.546610923258019,
+                        38.20455092806261
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "6b9ac116-94a8-4594-b55c-c6d63a5be83e",
+                    "name": "Traffico 11"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.543635102746533,
+                        38.19708224228891
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "fc67c0e7-a307-468f-8e10-5f49aa2b2636",
+                    "name": "Traffico 12"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.523355,
+                        38.1666545
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "9042cad4-254a-4c3f-8a56-0bd6ecb76af3",
+                    "name": "Traffico 13"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.548070791077862,
+                        38.17901539630007
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "91feac76-6fff-4c08-81eb-2e430b2410a7",
+                    "name": "Traffico 14"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54444540423728,
+                        38.193149722877756
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "d8d64c9f-7d99-4385-acef-f47a52ebfc66",
+                    "name": "Traffico 2"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551699070295587,
+                        38.19541027209938
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "0195aa6e-35c7-48a1-8021-33916fbf674f",
+                    "name": "Traffico 3"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.545258380701158,
+                        38.17529360671273
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "da5931be-422c-44a7-b55c-d3281957648e",
+                    "name": "Traffico 4"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.558046037846502,
+                        38.198849542772415
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "61d19187-4df5-497f-b802-f2fa27078149",
+                    "name": "Traffico 5"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556297175462948,
+                        38.21109417817551
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "acf2e19b-5952-4b7b-8b4f-faed775798b2",
+                    "name": "Traffico 6"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.557868008580813,
+                        38.197259227415756
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "8d82456a-85ae-4a7b-b57c-fe9c43b67bdc",
+                    "name": "Traffico 7"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55809383299654,
+                        38.19902627784377
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "a9fed9b0-df4d-46ea-83f1-b52bffea69a1",
+                    "name": "Traffico 8"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550024163923766,
+                        38.19171244831267
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "282b3393-67a7-474f-8a2c-d194df9180d0",
+                    "name": "Traffico 9"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553404990371243,
+                        38.18567366881825
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "a29fe759-31cd-4e15-90d6-9cc588e682d6",
+                    "name": "Urbanite15 (Giostra-LibertĂ )"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.561096202629411,
+                        38.206072937651314
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "c6beadba-06c1-474c-a35a-ab38fd7136cb",
+                    "name": "Urbanite16 (Caronte In)"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.561007028179626,
+                        38.205935837577314
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "bb071ade-8af5-4db6-851b-109b344f328c",
+                    "name": "Urbanite18 (Caronte exit)"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.561076299733957,
+                        38.20607740902702
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "b4537579-489e-4ab2-bb9e-660054cefa98",
+                    "name": "VillaDante_00"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552225631138745,
+                        38.20486760967241
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "3d39e259-0752-4523-a817-9ce6d431346c",
+                    "name": "VillaDante_01"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.53671410519354,
+                        38.18879401537307
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "1ef5d86e-5121-47bc-9a00-3b045b4b579c",
+                    "name": "VillaDante_02"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.538760698589394,
+                        38.18207668643856
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "31b25f74-5791-4aab-a315-d114c7791dba",
+                    "name": "VillaDante_03"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553808360409981,
+                        38.192698059268714
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "cfda7d46-f01b-442b-8862-8ed0789636b9",
+                    "name": "VillaDante_04"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55222585629812,
+                        38.198520954023536
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "699acad6-7e55-4883-aba6-21df9e195aeb",
+                    "name": "VillaDante_05"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.53358638862451,
+                        38.18045864613612
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "ebd9fa6e-ad18-4571-a4e5-9906bab83b95",
+                    "name": "VillaDante_06"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550969212370873,
+                        38.21354714858962
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "830261ff-5ce5-455a-860a-9510b2d31a63",
+                    "name": "VillaDante_07"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.535067411167438,
+                        38.20679090990736
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "cf643a6d-5219-4f04-b743-6ecf62c1c2a6",
+                    "name": "VillaDante_08"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.544704786195089,
+                        38.2026758819147
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "36b544ec-53b8-4a9d-bf2e-28c1d4592d32",
+                    "name": "VillaDante_09"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550020504633036,
+                        38.18282373491997
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "176a3788-ebdb-4310-a079-86f5f056999d",
+                    "name": "VillaDante_10"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.539164999956387,
+                        38.17702569082121
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "e45fa25f-a433-41b9-bc97-d46d45a8da37",
+                    "name": "VillaDante_11"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.535959536545935,
+                        38.20544066055315
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "b747b156-3054-4510-8a35-24e1c978c137",
+                    "name": "VillaDante_12"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.539992020976438,
+                        38.17571850880987
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "27c544fc-6561-4f9e-8fc7-ccd18b4239bb",
+                    "name": "VillaDante_13"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541585913631124,
+                        38.18465658408185
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "91488c94-6b02-4609-bce8-2e7f8adf615f",
+                    "name": "VillaDante_14"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554294262024003,
+                        38.18669014999669
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "e6f1b9dc-5017-45c8-922d-5a8a9ae8b099",
+                    "name": "VillaDante_15"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54807859247502,
+                        38.21267533190462
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "7d4bfc10-7a59-466c-9250-89b9147e1ad0",
+                    "name": "VillaDante_16"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54675214528668,
+                        38.19627978374589
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "c9ee9b00-db22-414a-a572-5d14e53d94ee",
+                    "name": "VillaDante_17"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54705687695521,
+                        38.21437395914299
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "fbc2e280-6c66-4219-97f2-3ce06d954289",
+                    "name": "VillaDante_18"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547571441688012,
+                        38.21263871082175
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "664fc1fa-e8d2-46ec-bd09-d045695c898f",
+                    "name": "VillaDante_19"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.545528639675101,
+                        38.190579234195084
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "3cb15974-a54e-425a-bc0e-fca65ccd8664",
+                    "name": "VillaDante_20"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54468583275991,
+                        38.17761449445548
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "29315e07-bff0-49d9-b629-05c041642740",
+                    "name": "VillaDante_21"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547095530002608,
+                        38.21184190330315
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "56c44be4-fa77-4aa9-96dd-1e851e24ab71",
+                    "name": "VillaDante_22"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.534454592104687,
+                        38.1927231757919
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "1c27eb8a-4836-46f6-8c10-054966f538b8",
+                    "name": "VillaDante_23"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.544915072274783,
+                        38.21212366698385
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "d01fed9e-7712-4bc3-b25a-576e9df65dfa",
+                    "name": "VillaDante_24"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556142816342048,
+                        38.18168525148023
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "c4faa1b0-659e-44fe-a1fc-848ec9b9ba6f",
+                    "name": "VillaDante_25"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.536732759406506,
+                        38.188897749182175
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "e6cd04a5-fca2-4d81-bb11-15fcfcd37890",
+                    "name": "VillaDante_26"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.540164861442802,
+                        38.212737078370296
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "a1cbba89-71c6-4f4d-b0c7-fa6d4df3714d",
+                    "name": "VillaDante_27"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.544528154467887,
+                        38.19378683023667
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "2afae6b2-20fb-4171-9344-eb214423edec",
+                    "name": "VillaDante_28"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.533642881148657,
+                        38.183809202511235
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "b13bacd9-b02d-4077-b951-b492ea75cf34",
+                    "name": "Zanca 01"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.546040492641767,
+                        38.204912430480384
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "604fa6f0-479a-4461-9d65-0939b0c4ad1d",
+                    "name": "Zanca 03"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.533424586692616,
+                        38.18295554857018
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "9b48e8c2-8e72-4998-ba98-47275f091c26",
+                    "name": "Zanca 07"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552517449339561,
+                        38.17717550970842
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "668d3df9-5b62-4fe5-b99b-a4711599c8e9",
+                    "name": "Zanca 08"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.557000623152177,
+                        38.21367180813199
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "4f7b861f-a6a3-4ecc-86f0-f15025a63399",
+                    "name": "Zanca 09"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.53393217897884,
+                        38.18251273565846
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "ffe090d8-1c28-4c8f-b7f2-3324b2cec1bb",
+                    "name": "Zanca 10"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55344405666401,
+                        38.1820361683367
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "99d46d22-0187-4ca4-aa8a-a4da6af0056d",
+                    "name": "Zanca 12"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55703752727083,
+                        38.19607849626094
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "uuid": "e0dd8525-737a-4856-8ddd-4001d587e852",
+                    "name": "Zanca 14"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552714484698747,
+                        38.20400005265154
+                    ]
+                }
+            }
+        ]
+    },
+    "total": 146,
+    "count": 146,
+    "page": 0,
+    "totalPages": 1,
+    "nextPage": true
+}
\ No newline at end of file
diff --git a/src/assets/map/map-component-maps/messina_cycling_paths.json b/src/assets/map/map-component-maps/messina_cycling_paths.json
new file mode 100644
index 0000000000000000000000000000000000000000..811785eab0d86fa4ae77fecdb36e3d8f52739851
--- /dev/null
+++ b/src/assets/map/map-component-maps/messina_cycling_paths.json
@@ -0,0 +1 @@
+[{"id":"urn:ngsi-ld:GtfsShape:messina:CyclingPaths:CRS84:1","alternateName":"CyclingPaths","description":"Pista ciclabile Messina - Dinnamare","location":{"coordinates":[[15.5612754821777,38.2057461528513],[15.5396461486816,38.2137042649229],[15.5279731750488,38.2217626526206],[15.5256128311157,38.2283031144339],[15.5229520797729,38.2282019777484],[15.5219650268555,38.2273928792016],[15.5218362808228,38.2263140671392],[15.5210638046265,38.2264152064497],[15.5202054977417,38.2273254539165],[15.5213642120361,38.2298538593357],[15.5227375030518,38.2319439414548],[15.5241537094116,38.2345058956597],[15.5190896987915,38.229449320375],[15.5154848098755,38.2247969606063],[15.5132102966309,38.2201780192588],[15.5113220214844,38.217716711774],[15.5091762542725,38.218289900406],[15.5061721801758,38.2153227575021],[15.5024814605713,38.2124566523255],[15.5002498626709,38.2096241551407],[15.49720287323,38.2074322661897],[15.4951858520508,38.2059484885141],[15.4920101165771,38.1995746449794],[15.4849290847778,38.1928629579669],[15.4799938201904,38.1879046813689],[15.4727840423584,38.1738375293672],[15.4648876190186,38.1668198052653],[15.4643297195435,38.1587890805601]],"type":"LineString"},"name":"Messina - Dinnamare","type":"GtfsShape","@context":["https:\/\/smartdatamodels.org\/context.jsonld","https:\/\/uri.etsi.org\/ngsi-ld\/v1\/ngsi-ld-core-context.jsonld"],"dateCreated":"2022-10-14T09:39:09.016Z","dateModified":"2022-10-14T09:39:09.016Z"}, {"id":"urn:ngsi-ld:GtfsShape:messina:CyclingPaths:CRS84:2","alternateName":"CyclingPaths","description":"Pista ciclabile Messina - Centro","location":{"coordinates":[[15.556404590607,38.197247547181],[15.55163025856,38.189414124437],[15.552043318749,38.189178012077],[15.552424192429,38.188967197626],[15.552581101656,38.189100010947],[15.552727282047,38.188996711505],[15.552932471037,38.188906060766],[15.553153753281,38.188773246963],[15.553459525108,38.188596161463],[15.55367410183,38.188478104766],[15.555133223534,38.19032059499],[15.556321442127,38.191861615525],[15.556497126818,38.19204186355],[15.556568875909,38.192110906863],[15.556604750454,38.192143320436],[15.556640625,38.192142005046],[15.557144880295,38.19711264068],[15.556860566139,38.197175878031],[15.556436777115,38.197289705411],[15.556404590607,38.197247547181]],"type":"LineString"},"name":"Messina - Centro","type":"GtfsShape","@context":["https:\/\/smartdatamodels.org\/context.jsonld","https:\/\/uri.etsi.org\/ngsi-ld\/v1\/ngsi-ld-core-context.jsonld"],"dateCreated":"2022-10-14T09:39:09.024Z","dateModified":"2022-10-14T09:39:09.024Z"}, {"id":"urn:ngsi-ld:GtfsShape:messina:CyclingPaths:CRS84:3","alternateName":"CyclingPaths","location":{"coordinates":[[15.565814,38.218324],[15.5655241012573,38.2208523355462],[15.5656099319458,38.2223020944011],[15.5667686462402,38.2248306744285],[15.5687856674194,38.226920900893],[15.56960105896,38.2284379631292],[15.5700302124023,38.2298201478416],[15.5710601806641,38.2329552499491],[15.5720043182373,38.2344721863219],[15.5731201171875,38.2355171685269],[15.5760169029236,38.2369497810148],[15.5778193473816,38.2380115814698],[15.5783772468567,38.2375059641392],[15.5791068077087,38.2379441660288]],"type":"LineString"},"name":"Messina - Litoranea","type":"GtfsShape","@context":["https:\/\/smartdatamodels.org\/context.jsonld","https:\/\/uri.etsi.org\/ngsi-ld\/v1\/ngsi-ld-core-context.jsonld"],"dateCreated":"2022-10-14T09:39:09.028Z","dateModified":"2022-10-14T09:39:09.028Z"}]
\ No newline at end of file
diff --git a/src/assets/map/map-component-maps/messina_pois.json b/src/assets/map/map-component-maps/messina_pois.json
new file mode 100644
index 0000000000000000000000000000000000000000..a858ff6a6b1f714bd89cad04be7b73839fd5454a
--- /dev/null
+++ b/src/assets/map/map-component-maps/messina_pois.json
@@ -0,0 +1,22977 @@
+{
+    "results": {
+        "type": "FeatureCollection",
+        "features": [
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Prenatal ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54971766,
+                        38.18187538
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giardini di Giano",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6335349381184,
+                        38.2713716441232
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3 Store",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5466943098152,
+                        38.1799339237369
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3 Store",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516782826138,
+                        38.1818325667762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3 Store",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5505429156267,
+                        38.1869954291839
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3 Store",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544284760692,
+                        38.191530005976
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3 Store",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554410806361,
+                        38.1949477155014
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "3d ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512932208003,
+                        38.1805272271163
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza Fulci",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539182874668,
+                        38.1887835893449
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "A. Celona",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524861667679,
+                        38.1820762601868
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "A.O. Papardo",
+                    "category": "Hospital/Polyclinic",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.592957765961,
+                        38.2633052293683
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "A.P.T. Messina ",
+                    "category": "Tourist Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5586135119556,
+                        38.1861354913684
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "A.S.D. Tennis Club Bauso",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4481587252852,
+                        38.2414396309166
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Abbigliamento Fiorentino ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524965408549,
+                        38.1853551492964
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Abbigliamento Nicodemo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5460939160724,
+                        38.1812136621636
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Acqualadrone",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5520604732944,
+                        38.2969276708949
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Acquamarina ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552926936728,
+                        38.2053790858169
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Acquario Comunale",
+                    "category": "Tourist Attraction",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554453432538,
+                        38.1985886286746
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ad",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517818551987,
+                        38.2005214435475
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Advanting Trade",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529526106259,
+                        38.2054211906943
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Al Borgo dei Pini",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6360043694971,
+                        38.2662969689359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Al Padrino",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539019421103,
+                        38.1807073668868
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Al Paradiso dei Bimbi",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.546745625659,
+                        38.1820204247794
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Al Piccolo Caffè",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517387885186,
+                        38.1932128254563
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Al Platano",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5702188753744,
+                        38.2351475543489
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Albergo Empedocle ",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5455102033274,
+                        38.1918551614093
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alessandra ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524390086402,
+                        38.1875591013491
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alessendrino",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538366510958,
+                        38.2011168492169
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alibi Dimensione Uomo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5537743049312,
+                        38.1846603729411
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5251106789125,
+                        38.1411837665366
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5465494608309,
+                        38.1780559110513
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5435597329361,
+                        38.1917440748456
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5409904057131,
+                        38.1931075690735
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5442641158817,
+                        38.1939225982961
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5371683859018,
+                        38.1956877693114
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551098384682,
+                        38.2056881929235
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari ",
+                    "category": "GroceryStore",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5515830288926,
+                        38.2062284948731
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alimentari di Signorino Giuseppe",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5217098946609,
+                        38.1894366616156
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alis",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419994655876,
+                        38.1716099140242
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Allis Contesse ",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5334442742056,
+                        38.1576468649162
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alta Moda ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547717413518,
+                        38.1838893112717
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Altaquota",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510165858692,
+                        38.1919428958894
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Altolia",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4461964640363,
+                        38.0765034549752
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Altolia ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4456297602707,
+                        38.0753005670324
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Alvaro Dr. Andrea Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55490557053,
+                        38.2036049728577
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ambra",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5425130175652,
+                        38.1721781138037
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "American Bar",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477623698164,
+                        38.1897294519786
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Americars di J&D S.r.l.",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5280488085266,
+                        38.1512988979652
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Amici Miei",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5501862908253,
+                        38.1865629141079
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Amico Fresco",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5192335136083,
+                        38.1401536647392
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Amiva",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538010131105,
+                        38.1958805326802
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ammendolia Letterio Francesco ",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554004226767,
+                        38.1872310720776
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Anna Dieli",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5527906910179,
+                        38.1861202551204
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Annibaie Maria di Francia",
+                    "category": "Theatre",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5475674416646,
+                        38.1865336712742
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Antemasi",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525562011564,
+                        38.1872617545309
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Antica Pasticceria lrrera",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533389461478,
+                        38.1857939350963
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Antica Pasticceria lrrera",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526800982509,
+                        38.1864706136219
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Antonveneta Gruppo Montepaschi",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5515266705274,
+                        38.1828534967344
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Apollo",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526229742802,
+                        38.1896852098291
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Apollo 11 ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511925816816,
+                        38.1820822058495
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Arcobaleno ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5502245317897,
+                        38.1865291049722
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "ARD discount",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5588665375513,
+                        38.1814593256121
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "ARD discount",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5500079745182,
+                        38.1939354711069
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "ARD discount",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536304914419,
+                        38.2059371808099
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Area di Servizio",
+                    "category": "Rest Area",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5442968291063,
+                        38.2073979771306
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Area di Servizio",
+                    "category": "Rest Area",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4907389989614,
+                        38.2389199610712
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Arena Giardino Corallo",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5562337432492,
+                        38.201789830203
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Arena Giovanni ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5465812238971,
+                        38.20843430262
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "As.T.B.",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5495435249347,
+                        38.1980098560935
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Associazione A.I.K.K. Karate",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5466060223692,
+                        38.1995465659986
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Auto Bite",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5489027172947,
+                        38.1743132432748
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Auto Iberia S.r.1. - Pa/Vs",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541065688441,
+                        38.1622948506589
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Auto Iberia S.r.l.",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5214586807068,
+                        38.1381557781827
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Autogrill",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5159624859143,
+                        38.1425835088028
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Autolinee Messina",
+                    "category": "Bus Station",
+                    "type": "Bus_Station"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5578235945767,
+                        38.1848302565281
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Autorimessa Cairoli",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5440005036989,
+                        38.1704436853147
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Autorimessa Primavera",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482985442442,
+                        38.190612648639
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Autosport Salemme S.r.l.",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419638168944,
+                        38.1635665988556
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Avis",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5549094028623,
+                        38.1961756153885
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Azarian",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477601127045,
+                        38.1918936754535
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "B & B Food",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550458206234,
+                        38.1898574857585
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "B San Gabriel",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493063922016,
+                        38.1825962009605
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "B Vaquero",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492287899484,
+                        38.180282656471
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "B. V. A. Bettrodomestici",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5216556384307,
+                        38.1404208904123
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "B. V. A. Bettrodomestici",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512142426258,
+                        38.1821262915977
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Babilonia",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482966386319,
+                        38.1794146025558
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Baciamo le Mani",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532518075978,
+                        38.1915414966224
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "BANCA AGRICOLA POP. DI RAGUSA",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5531406368464,
+                        38.1903713899181
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Carige",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5508305372358,
+                        38.1829042221943
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Carige",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554666906689,
+                        38.1873253493032
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca D'ttalia",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556967154158,
+                        38.1869265095947
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca FIDEURAM",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5553045088471,
+                        38.1856261906828
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Nuova",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547341871375,
+                        38.1790292733009
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare del Mezzogiomo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5420935063143,
+                        38.1726659790905
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare del Mezzogiomo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5465519782818,
+                        38.1818495798688
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare del Mezzogiomo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5499923628517,
+                        38.1889591589787
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare Dell'Emilia Romagna",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5462314180989,
+                        38.1903280771218
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare Di Lodi",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.539643329148,
+                        38.1694746520219
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Popolare Di Lodi",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5530663877299,
+                        38.1854817700986
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banca Sviluppo",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504873389647,
+                        38.1840122242489
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco di Sicilia",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.559410188674,
+                        38.2122220165762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco di Sicilia",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6058895397236,
+                        38.2590253291493
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco Popolare Siciliano",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553031940994,
+                        38.1764356090515
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco Popolare Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516848897964,
+                        38.1818845791648
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco Popolare Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5468710775029,
+                        38.1984621898031
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco Popolare Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558903766268,
+                        38.2057128375153
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Banco Popolare Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6167794643557,
+                        38.261189617438
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bandiera Dr. AJessandro",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5568652312853,
+                        38.2062182222505
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5367079282311,
+                        38.1957705845125
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Aiello",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523709382321,
+                        38.1976882020842
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Apollo ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5528199149445,
+                        38.1899500289597
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Astoria",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5262060641032,
+                        38.1724167601882
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Conca dOro",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5503112763725,
+                        38.2301850695302
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar De Luca",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.485988086005,
+                        38.0689639234672
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar del Popolo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485694740583,
+                        38.1860825192832
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Donato",
+                    "category": "Nightlife",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6403832579749,
+                        38.2651858779622
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Gelateria Fiumara",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4447538284206,
+                        38.2421254348945
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar le Sirene ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5988860758839,
+                        38.2554287597588
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Maracana'",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541655656883,
+                        38.1718672147009
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Mento Rossana Stephanie",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5469121176723,
+                        38.1931312699101
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Pasticceria Dolci Idee ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5142560081716,
+                        38.1193638319547
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Pasticceria Gelateria Sheridan",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560981199347,
+                        38.2191680592341
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Pasticceria Nuovo Millenium ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5829856175097,
+                        38.2483957118478
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Solaris",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5334272860072,
+                        38.1575128325658
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar SpartĂ ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5458507855889,
+                        38.1936251281946
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar SpartĂ ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4909743385687,
+                        38.2504149297725
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bar Sport ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4968486720616,
+                        38.0864263385842
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Barai Platano",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5632716934881,
+                        38.2215458081228
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Barchiaia",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5432234906617,
+                        38.1903280034411
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bardelle Stretto",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5595785261628,
+                        38.1866208355078
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Barfocacceria Grotte di Cazzolo M.",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5642105786969,
+                        38.2237764183372
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Barresi Dr. Giovanni",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526228528406,
+                        38.2008812516275
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bcc Antonello da Messina",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552614655777,
+                        38.1913255909562
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bcc Antonello da Messina",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512787260619,
+                        38.1939084267527
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bellavista",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6277965817665,
+                        38.2610702969781
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bellino ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5444123529331,
+                        38.1728427615159
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bena",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5414812130964,
+                        38.1714015639825
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bignoli Felice",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547596585054,
+                        38.1882442022767
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bio Baby di Toscano Ravia",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406151954192,
+                        38.1711785921888
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bistrot 502",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6380727964929,
+                        38.2658818079142
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bite",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523645935031,
+                        38.1817588033763
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Blue Gum",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525567226608,
+                        38.1842628165249
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bn Petroli Ganzini",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6044305617081,
+                        38.2581607922606
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bnl",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548703926604,
+                        38.1957795727217
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bnl",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556485422672,
+                        38.2197977317925
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Boccetta ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5474198377785,
+                        38.1982018502219
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Body and Mind",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5476261712437,
+                        38.181639679275
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Body Elegance",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443432635562,
+                        38.1801848367555
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Body Line",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5569935905803,
+                        38.2051002178877
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bond 10",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5561061617742,
+                        38.1839035491667
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bordonaro ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5188796211911,
+                        38.1742928247237
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bordonaro ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5148673987422,
+                        38.1753146930757
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bordonaro ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.513597857128,
+                        38.1762979436659
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bouchon",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553468559125,
+                        38.1943595149675
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Boutigue Bretella",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5513858697304,
+                        38.1829667975853
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Brancate-Romanini ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5502007803427,
+                        38.2067258492762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Brasserie dell'Ancora",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5588453531614,
+                        38.2104979803582
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Briga",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4719187804633,
+                        38.077596137138
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Briga",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4718181746608,
+                        38.0780690562637
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Briga Marina",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4939064163461,
+                        38.0809351855615
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Briga Marina ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4928471951592,
+                        38.0799939696833
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "BruschettĂ  Felice",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5612595480617,
+                        38.2156774556369
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "BSB Town House Messina",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548495524087,
+                        38.1857750092168
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Bulli e Pupe",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5596909381218,
+                        38.2129070889746
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Buon Mercato ",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5397764059629,
+                        38.1634604077936
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "C.i.m.",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539583620458,
+                        38.1847771928989
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "C.r.a.t.",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5388044536322,
+                        38.1611007007166
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Caffè Axel",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524081245178,
+                        38.1860804795376
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Caffè dello Stretto ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533000986171,
+                        38.2052068932121
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Caffè Santoro ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553766002685,
+                        38.1861658015073
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Caffè surla Ville di Finanze L.",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492843502053,
+                        38.2049641826242
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cairoli",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546478266478,
+                        38.1864138395709
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Calascione Carmelo Pasticceria",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.557968313297,
+                        38.2116084830246
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Calasole ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6415601010971,
+                        38.2717831276252
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Calogero Domenico",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510466773097,
+                        38.1822094785701
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cama Dr. Francesco",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5680493205088,
+                        38.2312047797323
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Camaro",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5220649634003,
+                        38.1892773792084
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Camaro",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5206197167407,
+                        38.1893408151126
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cambria Girolamo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5402057123664,
+                        38.1704629311664
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Camper",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5528352713475,
+                        38.1845760095023
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Campetti lgnatianum",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5499504157809,
+                        38.2055890794714
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Canale Ovest",
+                    "category": "Rest Area",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.502414330871,
+                        38.1019847427743
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cannistraci Giuseppa",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553058394213,
+                        38.1832175338175
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cannizzaro",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5450821218073,
+                        38.190954477495
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Capitol",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509114155014,
+                        38.1829165961393
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Capo Peloro Resort",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6276284494795,
+                        38.2610955004102
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappella di S. Eustochia Esmeralda",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512245133062,
+                        38.1956695503901
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappellani Giomi",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5570083355118,
+                        38.2123157400726
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappellini",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54520358432,
+                        38.1980745241078
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappuccetto Rosso",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529271268741,
+                        38.1836587631903
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappuccetto Rosso",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559896550809,
+                        38.2062031292259
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cappuccini",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5463478646227,
+                        38.2062319896638
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Caprice",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551169930796,
+                        38.1847001744992
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri LocalitĂ  Tremestieri",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5218729905202,
+                        38.1391623551861
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Piazza Argo",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5328814698392,
+                        38.2150368299359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via Bixio",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5514147338533,
+                        38.1825840683723
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via Concezione",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553733638127,
+                        38.1985952583778
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via Dir. Artiglieria",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5365505926067,
+                        38.1870369506106
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via G. e M. in S. Leone",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551900949708,
+                        38.2014346777909
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via la Farina",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5515492111801,
+                        38.1783851818243
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via Lago Grande",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6245564295343,
+                        38.2607072356749
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carabinieri Via Nazionale",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4790463752928,
+                        38.0627027857628
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cardullo A.",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5562809829542,
+                        38.186049608906
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Carrefour",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477235352688,
+                        38.1745266528712
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cartoleria Prinzi",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5494141006892,
+                        38.1807653524254
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Cura Carmona",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5459721781806,
+                        38.1933008117555
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Cura S. Rita",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566802876928,
+                        38.2059534501948
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Cura Villa Salus",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5456402112856,
+                        38.199301132884
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Kiposo Uesire",
+                    "category": "Medical service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512628545939,
+                        39.9924097586637
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Riposo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5440416065859,
+                        38.1861463134435
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa di Riposo la Rondine",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5433477024891,
+                        38.1893619269603
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Casa Musicale S. Filippo ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554692495251,
+                        38.1831228449238
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "CassarĂ  Graziella",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5964151483009,
+                        38.2535428381563
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Castanea delle Furie",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.518554890534,
+                        38.2609021534854
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Castanea delle Furie",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5195991075976,
+                        38.2640601599881
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Castiglione Dr. Nunzio",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525340689431,
+                        38.1955337263825
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Catanesi Dr. Giulia",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532901372381,
+                        38.1968198097773
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cattedrale Archimandritato",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5489556228127,
+                        38.1911035492691
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cattedrale di Messina",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523232808543,
+                        38.192187923404
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Catullo ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555755979508,
+                        38.1824055962988
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cavallotti ",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5577507266821,
+                        38.1866802632922
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Celona",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5451494853626,
+                        38.1980902655588
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centrale",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510820727564,
+                        38.1876147324527
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centrale",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545466023451,
+                        38.1923062841928
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro Danza Maracaibo",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5423664483726,
+                        38.1618650853778
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro di Formazione Sportiva Asd",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5494386838558,
+                        38.198659136197
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro Erboristico AJoe",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493774974586,
+                        38.1836441622515
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro Odontostomatologico Life",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4951825860539,
+                        38.0986921521312
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro Riparazioni Italcar Sri",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.523012173133,
+                        38.1426864229126
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Centro Riparazioni ltalcar",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5230473800539,
+                        38.1427905498046
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "chicco ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516120153816,
+                        38.1867985005678
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa Cristiana Avventista",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5507192956656,
+                        38.1945245915964
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa del Santissimo Rosario",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5195304794897,
+                        38.2628202810253
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa della Santissima Annunziata",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5543950425395,
+                        38.1911899696445
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa delle Barette",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504222923313,
+                        38.1937404790857
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa di S. Matteo",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5452549021597,
+                        38.2121307845423
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa di Santa Maria AJemanna",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551179040155,
+                        38.1882453924598
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa di Santa Maria della Valle",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.512613304871,
+                        38.2127047815008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa Evangelica Valdese",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5540911401472,
+                        38.1958499012562
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa Maria SS. dell'Incoronata ",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5216700149794,
+                        38.1900882426924
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa S. Teresa del Bambino GesĂą",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5431692975333,
+                        38.1884924000202
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa San Giacomo",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5486579914027,
+                        38.1776189291623
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa Santa Maria delle Grazie",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4789327105042,
+                        38.2712500058327
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chiesa SS. Cosma e Damiano",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5378728150675,
+                        38.1740247562396
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chirico Abbigliamento",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555569047206,
+                        38.1874257355649
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Chirico Boutique Sri",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5552129447156,
+                        38.1870372636897
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cicala Beach",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5613592831471,
+                        38.2154420050655
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cimitero ",
+                    "category": "Cemetery",
+                    "type": "Others"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6261345671609,
+                        38.2691047314453
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cimitero di Pace ",
+                    "category": "Cemetery",
+                    "type": "Others"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5731281142122,
+                        38.2392297464589
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cimitero Monumentale di Messina",
+                    "category": "Cemetery",
+                    "type": "Others"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5427844887214,
+                        38.1749004189601
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cineauditorium Fasola",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532886305403,
+                        38.1895663664602
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cinema Arena Savio ",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485272029042,
+                        38.1917123287889
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Clayeux",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523962319241,
+                        38.1820718408968
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Coin",
+                    "category": "Department Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506423229032,
+                        38.1821426105435
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Coin ",
+                    "category": "Department Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5540295160179,
+                        38.1848864869062
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Colavita Dr. Nazareno",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559405914471,
+                        38.2062138959805
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Collereale",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5452909828118,
+                        38.1796444613483
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Colosi ",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5471317392327,
+                        38.1821201954538
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Comode",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5520458405254,
+                        38.1825400359334
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Compass",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548089304593,
+                        38.1951784975917
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Conad",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.530077887607,
+                        38.1550590460485
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Conbipel",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5233502746331,
+                        38.1435906802547
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Conservatorio Musica",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5407671729016,
+                        38.1669098177471
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Consolato Generale Onorario lslanda",
+                    "category": "Embassy",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5595884312741,
+                        38.1866328776918
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Consolato Onorario Finlandia",
+                    "category": "Embassy",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551245001263,
+                        38.1984148307115
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Consolato Onorario Francia",
+                    "category": "Embassy",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5549081497133,
+                        38.1903526667923
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Consolato Onorario Germania",
+                    "category": "Embassy",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5471861110985,
+                        38.1917880272201
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Consolato Onorario Norvegia",
+                    "category": "Embassy",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556642409595,
+                        38.189106644212
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Conti Giuseppe",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5318214759974,
+                        38.1680955611957
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Contrada Sperone",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5930232415478,
+                        38.2643001887955
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Copacabana",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523048296932,
+                        38.2063538291681
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Coriandoli ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6023394288308,
+                        38.2566825068718
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Corpea Fitness Club",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5452327091522,
+                        38.1794172692218
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Costa",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558426869169,
+                        38.207403018063
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Costa Anna",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5481179676787,
+                        38.2078636980336
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Costume",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485170310646,
+                        38.1792187033708
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credem",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547855353433,
+                        38.1834691033218
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credem",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519098274912,
+                        38.183879926084
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credem",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5490278467778,
+                        38.204511142745
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credito Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5552480308125,
+                        38.1852930441601
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credito Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554177142055,
+                        38.2002355600868
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Credito Siciliano",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5585369825917,
+                        38.2096308433343
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cristo Re",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549348102946,
+                        38.1956797661971
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cumia lnferiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5004320863379,
+                        38.1744544824505
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cumia lnferiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5001972317193,
+                        38.1747128714841
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cumia Superiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4964957024995,
+                        38.1736331159982
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cuore di GesĂą ",
+                    "category": "CM Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5436623870565,
+                        38.2104129389077
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cuore Immacolato di Maria",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5650668844827,
+                        38.2260876143354
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Curcio Massimo ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536690511361,
+                        38.2049297180117
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Curcuraci",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5646159372244,
+                        38.2630104995655
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Curcuraci ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.566525160589,
+                        38.2580175447644
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Curro Letteria",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522142830946,
+                        38.197383576355
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cus Messina",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5579201510636,
+                        38.2114992960798
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Cwikla Maria",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4453539624077,
+                        38.2427420213901
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "D. Ssa Reres",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554014188839,
+                        38.2045329663771
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Da Alfredo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566052446954,
+                        38.1863990027502
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Da Caterina",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4783917875662,
+                        38.2715313698028
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Da Manuel Bar Trattoria",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5499815531838,
+                        38.1902656458402
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Da Vai",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5549845864965,
+                        38.1841662097728
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dainotti Dr. Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545403505743,
+                        38.2005913284339
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Danza Sportiva Corazon Latino",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5713843950315,
+                        38.2359537297761
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Darone",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4469308330378,
+                        38.2416188152564
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "De Maggio Dr. Matteo Maria",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538396482604,
+                        38.1834131191984
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dei Mille",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512017884675,
+                        38.1839186001706
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Del Popolo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482636709561,
+                        38.1863369985341
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Del Sud",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542367717856,
+                        38.1895028257344
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Del Villaggio Romeo",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498766594971,
+                        38.1793370217857
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Delizie Messinesi",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5561438983841,
+                        38.213478282408
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dello Stretto Palace",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550431312503,
+                        38.1959393247732
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dentista",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556435283071,
+                        38.1870722653588
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Desiderio",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522659318493,
+                        38.1774176796005
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Desiderio",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5552189940551,
+                        38.2063274786889
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Desirè",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5478669441664,
+                        38.1795275533384
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Despar",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550178398686,
+                        38.2066447726847
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Diagnostica dello Stretto Sri ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551320205603,
+                        38.2059513624502
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dipartimento di Ingegneria ",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5940984837591,
+                        38.2586472012681
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dna",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5476076012259,
+                        38.1743901586234
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dolci Tentazioni",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550346095509,
+                        38.1936371588676
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Don Bosco",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5487821686079,
+                        38.1907728549487
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Don Minico ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5036294596824,
+                        38.2151118657691
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Don Nino",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504122590568,
+                        38.1780329879727
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Don Orione",
+                    "category": "Theatre",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5455726486575,
+                        38.1766118539053
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Don Salvatore ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516211902813,
+                        38.1926324803339
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Donna Moda",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525274411287,
+                        38.1831030895015
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dorsale Curcuraci Antennamare",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5319308015968,
+                        38.2615710945292
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dorsale Curcuraci Antennamare ",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.536964132185,
+                        38.2454274822719
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott. lngo",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512212633384,
+                        38.1827890908526
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott. lsaja",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548487986493,
+                        38.182413193731
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott. Orazio Grimaldi Odontoiatra ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485402801681,
+                        38.1901039596899
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott. Ssa Amalia Brigandi",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496056545372,
+                        38.179483702058
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott. Ssa Marchesini ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485915367657,
+                        38.1844751917583
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dott.ssa Itrera Ketty ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511411286322,
+                        38.1852078602874
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Adelardi Ginecologo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5588535988102,
+                        38.2109968431916
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Alecci Umberto",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448568722161,
+                        38.1984517678337
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Alibrando Antonino",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525137955215,
+                        38.1992973011008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Arnieli Gustavo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5463934807748,
+                        38.1909776055434
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Barbaro Luigi",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555208499264,
+                        38.2054012180714
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Barbera Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517633736084,
+                        38.1839472167749
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Biondo Doriana",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5447157473946,
+                        38.1811682312091
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Calogero Francesco",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5575228307887,
+                        38.2058414333463
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Caristia Francesco",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5174194729976,
+                        38.2633202097686
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Castiglia Antonino",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544036370092,
+                        38.2032207596937
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Celona Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5488290329809,
+                        38.1953144668296
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Cordopatri Ginecologo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566330415572,
+                        38.2054564043803
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Cucinotta Carmela",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536406253589,
+                        38.1838250424362
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. De Francesco Petronilla",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5456985921446,
+                        38.1979168959969
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Famulari Cinzia",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5491805187812,
+                        38.1852486727488
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Fiumara",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5571769899777,
+                        38.1842754274989
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Fomaro Placido ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5487456366673,
+                        38.1880496471432
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Giliberto Giovanni",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5488957976731,
+                        38.1904175120439
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Giubbrone",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5456068114069,
+                        38.2130571040852
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Gulletta Antonino",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5475452620988,
+                        38.1814983507137
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Lipari Luigi",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547525562798,
+                        38.1911046729094
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Maccarone Marcello",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5572061215463,
+                        38.1855881009078
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Maiorana Maria ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5580963419366,
+                        38.2187785524807
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Marciano Antonino ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529133524081,
+                        38.1857599562506
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Mezzanares Arturo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5569130599027,
+                        38.2023808013679
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Milone Cosimo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5459497923925,
+                        38.188960244153
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Miragliotta Salvatore ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5549017731318,
+                        38.2031791059049
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Moraci Nicolò",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539528558997,
+                        38.2084008191567
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Mormina Giovanni ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5318546788689,
+                        38.1542016577165
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Nava Domenico ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534850776841,
+                        38.2093243034203
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Ninniti Gabriele ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534891447935,
+                        38.1886896146402
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Oliveri Domenico",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518835935069,
+                        38.1954946965149
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Origlio Paolo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522631359707,
+                        38.1828899284705
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Picciotto Morichetti lsabella",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5495083398582,
+                        38.1805958530304
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Siclari Rita",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461448274213,
+                        38.1888132089381
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Soraci Annibale",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519147215824,
+                        38.2093129566159
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Toscano Antonino",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443993264948,
+                        38.1949528666048
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr. Zanghi Letterio",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5497718860946,
+                        38.1831741733497
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Dr.ssa Orlando Annunziata Lucia",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5788254788824,
+                        38.2653252843609
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Duca Windsor",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493531850685,
+                        38.1968663703298
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Duomo",
+                    "category": "Historical Monument Building",
+                    "type": "Cultural_Buildings"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5527796779002,
+                        38.1923092153704
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "E. Castronovo Bordonaro",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5115146285164,
+                        38.176111726063
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ecospiritual Shop Fiori Gialli",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524978598491,
+                        38.1891738051952
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Edicola",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554523024704,
+                        38.204493868996
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Edicola",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5460360845095,
+                        38.2116706048668
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Effe2",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525924415884,
+                        38.1872279357128
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Effeci",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532617388306,
+                        38.1840941749289
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Elettrauto Falcone Massimo",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.555954883156,
+                        38.1827492494013
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Elettrofomiture Provvidenti",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.544484937074,
+                        38.1812871093918
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Elleesse Sport Club",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368561103015,
+                        38.1647053098505
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Emporio Annani",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532946308952,
+                        38.1862375708003
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4790990940589,
+                        38.0636756800641
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5158222367333,
+                        38.1440913141495
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5210759117003,
+                        38.1566873779108
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5323482869055,
+                        38.1580975800773
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5398272695895,
+                        38.1656088836862
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5293381283194,
+                        38.1705260821252
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5435436356134,
+                        38.1759106116283
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5450242023559,
+                        38.1786955496495
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5458678614503,
+                        38.1806987867028
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5438531341048,
+                        38.1814241048579
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5476311503136,
+                        38.189764825662
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5451410679684,
+                        38.1981462058481
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548872461707,
+                        38.1983267514943
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518881692674,
+                        38.2038007815313
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5453664510597,
+                        38.2111216644695
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5594804173034,
+                        38.2119224510293
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5895400097891,
+                        38.2509595243419
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "eni",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.62764005543,
+                        38.2659218879785
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Eos",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5614368021887,
+                        38.2159012067806
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Era lnformatica",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5817036901067,
+                        38.2477819207402
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esprit",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559498562108,
+                        38.1874135784826
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5084770397399,
+                        38.1108198931988
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5204514977773,
+                        38.1335567112608
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5224622858804,
+                        38.1410964195738
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.527788429343,
+                        38.150694896075
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5367370716491,
+                        38.1623166019801
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5415200815505,
+                        38.1828736769549
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5340391017373,
+                        38.1866893237363
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493322686718,
+                        38.1891360078585
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5489122176877,
+                        38.1983467824676
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558361929019,
+                        38.2020148897726
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5626009135485,
+                        38.2166293996017
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5632660723719,
+                        38.2210969395292
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5505440905671,
+                        38.2235545045498
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5620824981345,
+                        38.2253488998338
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4466987499559,
+                        38.2438988984475
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Esso",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6234022683326,
+                        38.2642296074278
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ester Pelli News",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504706803829,
+                        38.1825026807762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Eugenio Penna",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5541114392479,
+                        38.1842271034556
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euphonya Management di Grasso D.",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5472928445633,
+                        38.1974085368417
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "EURO Spin",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5234181694262,
+                        38.143734946335
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "EURO Spin",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4458196113428,
+                        38.2431640484382
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euromobil F.a.t.a.",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5302859833253,
+                        38.1553029321753
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euronics",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5208289655716,
+                        38.1365464087272
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euronics",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5216621894149,
+                        38.1387455181522
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euronics",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5298294630407,
+                        38.1545940497492
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euronics",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5306657862524,
+                        38.1551777517762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Euronics",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5455061485512,
+                        38.1906645642197
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "EURONICS Point",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554788988943,
+                        38.1850539807184
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Europa Auto S.p.A.",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5415600104644,
+                        38.1628949492527
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Europcar",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550858536472,
+                        38.1922458296305
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Eurotruck S.r.l.",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5136417028393,
+                        38.1221059821917
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Eventi",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5530509911097,
+                        38.1832714792675
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "expert Papino",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5223499857663,
+                        38.1406080688068
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "F 3 Motors S.r.l.",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5403002983091,
+                        38.164249578069
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "F.D. Fashion Group Sri",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5277610354311,
+                        38.150748748661
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "F.k.t.",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5595093238711,
+                        38.2124653950903
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Famulari Dr. Cinzia",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510098220288,
+                        38.1875184286359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fantasy",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5499185982042,
+                        38.1833388014554
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fantasy",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6400005527612,
+                        38.2651640916274
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.504122251289,
+                        38.1514579850288
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5359452848164,
+                        38.1623258965199
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498116183025,
+                        38.1894661333783
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.574952584046,
+                        38.2380197171899
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5997199639517,
+                        38.2556705831985
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5185137600774,
+                        38.2633623232919
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Baratta",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.608721191965,
+                        38.2606660298065
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia batteri Dr. Francesco",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5024511576064,
+                        38.1419455833659
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Brancate Carmela",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.555583339556,
+                        38.2026724741765
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Caminiti Ganjfi Carmelina",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5143021397525,
+                        38.1193440545162
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Capila Dr. Renato",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5314100854373,
+                        38.1528350656374
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Coppolino Alessandro",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566935615853,
+                        38.206049478507
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Costa",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5567114107408,
+                        38.2080638508941
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia delle Erbe",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5552170720526,
+                        38.2138977954592
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Dott.ssa Mangano",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4780920719963,
+                        38.2672645040442
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Feriazzo Dr. Rosa Maria",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5200909213238,
+                        38.1751271926315
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Fiandaca di Montagnese A.",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5288545023497,
+                        38.1698330666829
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Fili Gargano",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5189013156583,
+                        38.1564712874146
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Freni",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5062224304735,
+                        38.1039258315019
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Largo Giuseppe Seguenza",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538183383992,
+                        38.1970342062068
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Macaione Dr. Serafina",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4951119006661,
+                        38.1420692344973
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Mangano Carlotta",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4817896389416,
+                        38.0658814405608
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Mangiavi Dr. Rosario",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5491582046749,
+                        38.209511983817
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Pirrone Angela",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526782819396,
+                        38.2037484977689
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Pizzimenti Concetto",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5816083093389,
+                        38.2605759913358
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Ruffa",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5537736746831,
+                        38.1867416343608
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Ruffa Dr. Antonio",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534954322134,
+                        38.1869202697815
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia S. Margherita",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4584135969709,
+                        38.0845785580251
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia San Paolo",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368878212584,
+                        38.1851262063906
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Scoglio Letteria",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4924870430671,
+                        38.0992973462401
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Sgroi Maria",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5186192512416,
+                        38.1403517236715
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Tornaseli Francesca Maria",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5177980116548,
+                        38.2926575129234
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Trovato Dr Onofrio",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6419106397948,
+                        38.2674532589975
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Giuseppe Garibaldi",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5557557695542,
+                        38.2043366934827
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Monsignor L. d'Amgo",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533861455161,
+                        38.200274038695
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Seminario Estivo",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547201544021,
+                        38.2108893367489
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Tommaso Cannizzaro",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536470940077,
+                        38.1868250127115
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Tommaso Cannizzaro",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547041,
+                        38.189946
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Via Ventiquattro Maggio",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550057723468,
+                        38.1923692582282
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Viale Europa",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5398009446801,
+                        38.183506409968
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Viale Giostra",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511174753168,
+                        38.2089843414472
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Viale San Martino",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448542162944,
+                        38.1756378383707
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Viale San Martino",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5486260021196,
+                        38.17961707177
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Farmacia Viale San Martino",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533407999647,
+                        38.1848812664182
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Faro Superiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5807631277719,
+                        38.2624963573393
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Faro Superiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5804048084074,
+                        38.2641019655387
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fata Morgana",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547253023976,
+                        38.2035161607337
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fata S.r.l.",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5291514966458,
+                        38.1532883448282
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Federazione Italiana Palla a Volo",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5582812245136,
+                        38.2049552958596
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Federazione Italiana Tennistavolo",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5446238547436,
+                        38.1766294094051
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fera Dott. Rosalba Studio Medico",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5817674676632,
+                        38.2630678644686
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fiera Campionaria di Messina",
+                    "category": "ExhibitionorConferenceCenter",
+                    "type": "Exhibitions"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5573766534433,
+                        38.2021470531168
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fiera di Messina",
+                    "category": "ExhibitionorConferenceCenter",
+                    "type": "Exhibitions"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55800940559,
+                        38.2033475904952
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fili Cambria Snc",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5206875344502,
+                        38.1346084396071
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fili Cambria Snc",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.521985447557,
+                        38.1396297136045
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Findomestic Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546076830822,
+                        38.1913609046302
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fineco",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542979398737,
+                        38.1850836724604
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fiumara di Larderia",
+                    "category": "Waterway Element",
+                    "type": "River"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5208047098784,
+                        38.1341254093346
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fiumara di San Filippo",
+                    "category": "Waterway Element",
+                    "type": "River"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5193125239347,
+                        38.157535869841
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fontana di Orione",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522702114391,
+                        38.1921996708121
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "forerĂ  Antonino",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448394517486,
+                        38.1985086655857
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Formula 3 S.p.A.",
+                    "category": "Motorcycle Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406141773319,
+                        38.1643839979718
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Formula 3 SpA",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406964551062,
+                        38.1644763496348
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Formula Tre",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5409461446473,
+                        38.1639726961219
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Forniture Edili G. & G. (S.n.c.)",
+                    "category": "Home Improvement i Hard?",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5087954024041,
+                        38.1114241636891
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Foscolo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5470359137806,
+                        38.1363833403352
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Foti Macelleria",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5447692954997,
+                        38.1809595555036
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Fox",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5466613664805,
+                        38.1781963846292
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Furane Pietro",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523582817609,
+                        38.1796695125721
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "G&G Pneumatici",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5557817540001,
+                        38.2019426607005
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "G. S. D Athlon",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5386649532804,
+                        38.1859562259664
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati",
+                    "category": "Railway Station",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5041351601385,
+                        38.1041969862471
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Inferiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5025407794877,
+                        38.1087567348485
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Inferiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5019970162471,
+                        38.1096670384903
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Marina",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5070468643687,
+                        38.106338508244
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Marina",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5077773937268,
+                        38.1065291611299
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Superiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4945884843196,
+                        38.1118197691726
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Galati Superiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4952373365767,
+                        38.1119576411095
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ganzim",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6108411995226,
+                        38.2582993882195
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ganzini",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6157982902058,
+                        38.2605942249883
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Garage Gentiluomo",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523672658143,
+                        38.1792716955022
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gelateria Aiello",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549929434875,
+                        38.1980036643647
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gelateria Spadaro",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5729677898301,
+                        38.2368898171213
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gelateria Spadaro",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5729737876121,
+                        38.2368898455267
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Generazioni ltaliane",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522355390654,
+                        38.1868324061655
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gesso",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4664907061364,
+                        38.2344300231085
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ghota Caffè Restaurant",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506220950415,
+                        38.1913612550866
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giampilieri",
+                    "category": "Railway Station",
+                    "type": "Rail_Station"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4777711422064,
+                        38.0627968003318
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giampilieri Marina",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4821762270328,
+                        38.0657408556273
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giampilieri Marina",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4852240650264,
+                        38.0683345846196
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giampilieri Superiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4689034204897,
+                        38.0688959791476
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giampilieri Superiore ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4672378908222,
+                        38.0691093588337
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giap",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5562155533055,
+                        38.2087332935312
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giglio",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.557421282565,
+                        38.1852902126825
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gioielleria Gullo",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5503165299062,
+                        38.1825299491582
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giorgia ",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5470386627631,
+                        38.1737427271356
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giubrone Dr. Francesco ",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5463592525194,
+                        38.212696753957
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Giuffrida ",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5390521128975,
+                        38.1647335691159
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Grand Hotel Uberty",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5576402152756,
+                        38.1862209075854
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Grand Hotel Udo",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5691019548261,
+                        38.2339937285496
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Grs Petroli",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5358772820414,
+                        38.2135893689274
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gs",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545919553127,
+                        38.1852010070916
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gs",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448169330339,
+                        38.192589657657
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Gulli Katia Alimentari ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498252601493,
+                        38.2036201905497
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "GulliCarmelo",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5549285529353,
+                        38.2091931068496
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Hospital Bar",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.542303638202,
+                        38.1822295711608
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Idea Sposa",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554231414976,
+                        38.1875534890509
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Idustrial Garage-Car Valet ",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5554170177076,
+                        38.1822239184137
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Cappero",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550636104855,
+                        38.1837700061857
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Fico d'lndia",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544016583592,
+                        38.2001578328647
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Gambero Rosso da Enzo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6094326775775,
+                        38.2608343068978
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Girasole",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506613565838,
+                        38.1824036074234
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Girotondo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485066108429,
+                        38.1895290055309
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Griso",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5530949303287,
+                        38.1804806714205
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Nido",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.548997422329,
+                        38.1850039029313
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Papiro",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5494543868973,
+                        38.1820570832556
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Peloritano",
+                    "category": "Campground",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4641087593671,
+                        38.2594997910834
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Picchio",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4961099918783,
+                        38.1112929560111
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Ponte",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5981633009429,
+                        38.2647181353887
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Profumo del Pane ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524659226099,
+                        38.2056688250735
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Il Viale del Pane",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5483467774774,
+                        38.1793938452287
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Interdonato Salvatore",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5582275867924,
+                        38.207836027913
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5424519105198,
+                        38.1743270665742
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5528380284524,
+                        38.1826107166522
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558427749888,
+                        38.1878289305911
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5535218299594,
+                        38.1960511661498
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5481016810613,
+                        38.1988558095124
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intesa Sanpaolo",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5595536476712,
+                        38.2168080700848
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "intimissimi",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5535081222695,
+                        38.1858956907684
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intimo d'Autore",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5553944990048,
+                        38.2195496299404
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intimo di Salpietro Cristina",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509356014643,
+                        38.2229365556053
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Intimo Uomo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506550484271,
+                        38.1833772333667
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.54104190764,
+                        38.1715964401383
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5618124577335,
+                        38.184926883742
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5580925677013,
+                        38.1877504845562
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5537932887211,
+                        38.2006348169031
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5573363590629,
+                        38.2138927189028
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.565621565037,
+                        38.2259712530092
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ip",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5924975865516,
+                        38.2537983913327
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Irish Pub",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6029740988247,
+                        38.2569623832033
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Comprensivo Enzo Drago",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5438292709001,
+                        38.1766116984375
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Sacro Cuore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5460592714527,
+                        38.1907551205253
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto San Luigi",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.550832686754,
+                        38.2008548835045
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Scuola Paritaria Can. A. M. di Francia",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5472414570277,
+                        38.1858813777073
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Statale d'Arte",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5563204286475,
+                        38.2014283639848
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Statale d’Arte Juvara ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539890464564,
+                        38.2031858319055
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Tecnico Commerciale Jaci",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524759180251,
+                        38.1895665636474
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Tecnico Industatale Verona Trento",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536052461293,
+                        38.1830781404851
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Istituto Tecnico Nautico Caio Duilio",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545438610646,
+                        38.1821528584907
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Italia ",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492432468278,
+                        38.1834176142988
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Jamaica",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5500843597614,
+                        38.1857597213154
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Jazz",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529673365471,
+                        38.1836289620563
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Jeanseria Naif di Latella Silvana",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555277640522,
+                        38.1827852387287
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Jhonnie",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551573632775,
+                        38.1824568559628
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Judo Club Yama Arashi",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516640123073,
+                        38.177606994309
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Just Firm di Stumiolo Biagio",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519398440994,
+                        38.185607455849
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Juvara",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5398745708281,
+                        38.1699645596225
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Katia di Ucata Attilio",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547784300827,
+                        38.1844631398432
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L'Agave",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4466292216145,
+                        38.2438395945549
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L'Essenziale",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5392854202743,
+                        38.1837339176824
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L'Euro Porchetta",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5390359821961,
+                        38.1848693472257
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L'Odissea Gastronomica",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5455422935775,
+                        38.2090062367862
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L. Puglisi",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5535541814856,
+                        38.1860188629991
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Buona Forchetta",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532576118127,
+                        38.1810482318997
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Cambusa del Vicolo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6070052561772,
+                        38.257685023681
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Campagnola",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523169577009,
+                        38.1944940784717
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Casa della Pizza",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6054146281401,
+                        38.2582393766803
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Casa della Pizza ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545538104462,
+                        38.1922783279058
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Caveja",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551061397215,
+                        38.1847525710146
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Cicala",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550470565483,
+                        38.2051300963631
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Dolce Vita",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526004801248,
+                        38.1913495168318
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Farmacia delle Erbe",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5386775128248,
+                        38.164564877546
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Girandola ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504470201035,
+                        38.1824585850417
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Locanda del Barbablu",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556461063885,
+                        38.1891255527397
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Messinese ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566056096012,
+                        38.2057811613885
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Monica Michele",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554489273288,
+                        38.190089799703
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Nuova Panetteria ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5483567127875,
+                        38.1794018883701
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Parolaccia ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5657133249611,
+                        38.2310478953724
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Perla Nera",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5491316633488,
+                        38.185098497931
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Pineta Sporting Club",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5404740148181,
+                        38.2062245000065
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Pizzaccia 2",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5706155006104,
+                        38.2355772609849
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Primeria",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6366048374881,
+                        38.2630249099623
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Residenza",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509448285574,
+                        38.186455500356
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Ruota Gelateria ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6026354569249,
+                        38.2567978540471
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Stellina",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5483309105861,
+                        38.1793767769162
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Terra dei Sogni",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5454651827728,
+                        38.1800091470852
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Tonnara",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.555306096924,
+                        38.187811426357
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Torre",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6099205235244,
+                        38.2575157455415
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Tradizione",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560640355125,
+                        38.207080168198
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Trattoria",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496953328284,
+                        38.1909740557088
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Valle ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5369199154558,
+                        38.1648615528728
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "La Valle Giovanni",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5374894255154,
+                        38.1631668176355
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Larderia lnferiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4994681558427,
+                        38.141289875778
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Larderia lnferiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5001135530894,
+                        38.1420768704051
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Larderia Superiore",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4936942793729,
+                        38.1388847530633
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Larderia Superiore",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4932717597595,
+                        38.1390174208142
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Le Delizie del Pane",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5354941007566,
+                        38.212700890941
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Le Dolcezze",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516341895005,
+                        38.1883720479363
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Le Due Sorelle ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5543421311316,
+                        38.192911114425
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lepanto",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534402279056,
+                        38.1913434479487
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lettere ",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5480815650191,
+                        38.231049320987
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Liceo Classico Francesco Maurolico",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5503318656807,
+                        38.1916717876134
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Liceo Scientifico Archimede",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5445074865926,
+                        38.1989189670135
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Liceo Scientifico Statale G. Seguenza",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517079405549,
+                        38.1937264999087
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Life Motors S.r.l.",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5416627819336,
+                        38.165586474836
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "lmbarco",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5573193619696,
+                        38.1795577586354
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lo Giudice G. Sas",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5481187229003,
+                        38.1804773946186
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lo Re Vincenza Pediatra",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496387836075,
+                        38.184659025557
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Locanda",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4866393513348,
+                        38.2300389573221
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Locanda ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4857357574945,
+                        38.2308474452539
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "lp",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5195919600772,
+                        38.1300649413663
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "lp",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5287004983014,
+                        38.152509513162
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "lper",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.542240653175,
+                        38.1856930482113
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "lris",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6032944852098,
+                        38.2571618151971
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ls Auto S.r.l.",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5478323791599,
+                        38.1730766752845
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Luisa Spagnoli",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555722534191,
+                        38.2025514654148
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lungomare",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550997297388,
+                        38.1965223838526
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Lux",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496468596304,
+                        38.1862465021134
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L’Altro Bar",
+                    "category": "Nightlife",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6067841039126,
+                        38.2597052853588
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L’Altro Orso",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546141290169,
+                        38.2008835707135
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "L’Isola Azzurra",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498186831265,
+                        38.1827995252098
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "M. Polimeni & Zumbo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5235737781798,
+                        38.1384415611714
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Macelleria Ciccarello Francesca",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5141429562773,
+                        38.1189754427226
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Macelleria Liotta Stellario",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5261391763514,
+                        38.1881218531418
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mad Arts",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5527908616132,
+                        38.2052624893388
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Madonna dei Miracoli",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419615567569,
+                        38.1730652203002
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Madonna della Mercede",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5468696463369,
+                        38.1900011791172
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Madonna di Lourdes",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549744609822,
+                        38.2025132046622
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Madonnina del Porto",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5605975431688,
+                        38.1962881935625
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Madonnina del Porto",
+                    "category": "Historical Monument Building",
+                    "type": "Cultural_Buildings"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.560742329283,
+                        38.1965227484156
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Magazzini Lisitano",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5541821958453,
+                        38.2046202285566
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Maggiore",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55512190728,
+                        38.1926378591592
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Majorana-Marconi",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5388994556887,
+                        38.2130237172653
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Makoto",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498966631569,
+                        38.1975756624215
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mancini Dr. Fiorenzo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5386508657887,
+                        38.1651855328435
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mania",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554029436246,
+                        38.191554130381
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Manzoni ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5465512831106,
+                        38.1810098737997
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Marakaibo",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5327019682876,
+                        38.1561229356678
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Maria Santissima di Loreto ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5430595078781,
+                        38.1626240572553
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Maria Stella Maris",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5344842503111,
+                        38.1612004644912
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Marinely",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524198921119,
+                        38.1821159353405
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Marsala Filippo",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509784032276,
+                        38.1822491448693
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Giorgio",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5337316619714,
+                        38.2749815087251
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Giorgio ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5338652373294,
+                        38.2738542453001
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Giovanni",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5420812034486,
+                        38.2652151891543
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Giovanni",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5437416564402,
+                        38.2665514175879
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Nicola",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5396414577682,
+                        38.270623067162
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa San Nicola",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5404415329779,
+                        38.2707024785486
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa Santa Lucia ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5462545993558,
+                        38.269486085956
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Massa Santa Lucia ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5480891411613,
+                        38.26999457484
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mastronardo Carmelo i Figli ",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542704130427,
+                        38.1816927419888
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mavì S.p.A.",
+                    "category": "Truck Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5181671417272,
+                        38.1275721733042
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Max Tendenze",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5488796034067,
+                        38.185651122932
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "MaxMara",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523892556054,
+                        38.1838001970866
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "McDonald's",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5543187816611,
+                        38.1851037630655
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Meeting",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532047271222,
+                        38.2209518823166
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mercati Alimentari Bonino ",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5190226327333,
+                        38.1461525379193
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Merceria Giglio",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5301384327898,
+                        38.1533829249428
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Merci Via Siracusa ",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5422740767353,
+                        38.1719150893023
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mercurio ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541892264805,
+                        38.1724411176676
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mercè Via Don G. Minzoni",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5445175108605,
+                        38.189731269419
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510293370044,
+                        38.1782597941635
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461439704487,
+                        38.187767634559
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina Centrale",
+                    "category": "Railway Station",
+                    "type": "Rail_Station"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5586413582725,
+                        38.1854888498546
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina Marittima",
+                    "category": "Railway Station",
+                    "type": "Rail_Station"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5607326395476,
+                        38.1878827901295
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina Tremestieri",
+                    "category": "Ferry Terminal",
+                    "type": "Ferry"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5208499806181,
+                        38.1312034134868
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina/Caronte & Tourist",
+                    "category": "Ferry Terminal",
+                    "type": "Ferry"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.559261724013,
+                        38.2101630481639
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina/Molo Norimberga",
+                    "category": "Ferry Terminal",
+                    "type": "Ferry"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5634108129409,
+                        38.1911951534437
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Messina/Tremestieri",
+                    "category": "Ferry Terminal",
+                    "type": "Ferry"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5215131079824,
+                        38.131154529395
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mexico e Nuvole",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544051837092,
+                        38.194897706921
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Micali Piera",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368629775146,
+                        38.1645893838962
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Milauto",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5276704204446,
+                        38.150568389409
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Milauto",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5277559223198,
+                        38.1506307669278
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili Marina",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5159219524875,
+                        38.1232088614289
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili Marina",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5155889276031,
+                        38.1233176468006
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili San Marco",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.506940068987,
+                        38.1203772907241
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili San Marco",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5068503928769,
+                        38.1206202141298
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili San Pietro",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4863315157121,
+                        38.1262618874234
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mili San Pietro",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.48670807151,
+                        38.1268985376633
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Minottica ",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552993904293,
+                        38.188212466214
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Moda Danza",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5531662575564,
+                        38.1896217746759
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Moda ltalia",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5223460473068,
+                        38.1406000535016
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Molino",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4533310571135,
+                        38.074730405484
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Molino ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4537436290864,
+                        38.0740723206719
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mondadori ",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558810151422,
+                        38.1877951214222
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mondello ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539202272461,
+                        38.1806684657812
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte Dei Paschi Di Siena",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5278036571291,
+                        38.1479959275826
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte Dei Paschi Di Siena",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5500665805356,
+                        38.1784062393293
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte Dei Paschi Di Siena",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5524425719471,
+                        38.1876170975663
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte Dei Paschi Di Siena",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559396294967,
+                        38.206208893368
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte Dei Paschi Di Siena",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5608107659453,
+                        38.2195249983043
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte di PietĂ ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5507223249908,
+                        38.1946535597817
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Monte di PietĂ  ",
+                    "category": "Theatre",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506790859359,
+                        38.1945543928059
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mood",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553156310041,
+                        38.183223989122
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mood",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509518521691,
+                        38.186185628964
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Mood ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547784300731,
+                        38.1844630497531
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Morabito Francesco ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.52973167289,
+                        38.1513697396701
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Morgana ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525121851762,
+                        38.1863338765295
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Morganti Maria ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5475010690118,
+                        38.2090763812089
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "motivi ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5521840480134,
+                        38.1835713178742
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Motonautica e Velica Peloritana",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5635225075612,
+                        38.2206283057044
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Motor Service Sri",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5650560534385,
+                        38.2312477460396
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Municipio di Messina ",
+                    "category": "CityHall",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5537840557123,
+                        38.1937462080223
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Muschio & Miele",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5537580165179,
+                        38.1845663297069
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Museo Annibile di Francia ",
+                    "category": "Museum",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5476960067954,
+                        38.1832564330505
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Museo Regionale ",
+                    "category": "Museum",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5616808280701,
+                        38.216152260915
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Music Center Strumenti Musicali ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492970510765,
+                        38.1821093287618
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nara Camicie",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518766624602,
+                        38.1835039038803
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nebe Coffeebook ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6395056496043,
+                        38.2650408144792
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nettuno ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555391492176,
+                        38.1992404798135
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "New Fruit of Sicily S.r.l.",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5341079994438,
+                        38.1587185873573
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Next ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554024154147,
+                        38.1871986448842
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nicotra",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.537525687612,
+                        38.1631300006163
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Noi Due",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517009370787,
+                        38.1930617019225
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Non Solo Bijoux ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517490624968,
+                        38.1885165343182
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nunnari & Sfameni",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519927575157,
+                        38.1878798993031
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nuovo Camping dello Stretto",
+                    "category": "Campground",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.630707411294,
+                        38.2617567034031
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nuovo Millennium",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.564119777766,
+                        38.2242858138609
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nuovo Oratorio della Pace",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504340176293,
+                        38.1937765210423
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nuovo Ritrovo Lombardo ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5464397492051,
+                        38.1773566455819
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Nuovo Tennis Club Curcuraci",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368472628129,
+                        38.1646852756762
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Oasi 2000",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546003710054,
+                        38.1979245513225
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ocean Fish ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5585581618877,
+                        38.2094729977482
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Oddamo Giovanni",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533775386237,
+                        38.2014195939217
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Odeon",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529337588374,
+                        38.1803779542964
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Odeon Cinecenter",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55182507741,
+                        38.1831847752159
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Officina Elettrauto ZappalĂ ",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5553719733278,
+                        38.1820987521659
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Olimpia ",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5468781516303,
+                        38.1904660544719
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Oltre",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5521205824178,
+                        38.1835030449321
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Optimus",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5585555726977,
+                        38.2082214271973
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orchidea",
+                    "category": "Nightlife",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548227814956,
+                        38.1885419068656
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orient ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485803311976,
+                        38.1798417789261
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orimi ",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5429319151714,
+                        38.1921489937849
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orologeria Sulfaro",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5487206542069,
+                        38.1895130125835
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orto Liuzzo",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4575633165836,
+                        38.2559521222945
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Orto Liuzzo",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4607881001119,
+                        38.2566982490436
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ortofrutta di Chiaia lgnazio",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5494922121475,
+                        38.1836766878538
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ortofrutticoli ed Agrumari Morgana",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5563601124748,
+                        38.1842975978851
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Osteria del Campanile",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523020474615,
+                        38.1928855767368
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Osteria Etnea",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5487628829664,
+                        38.1870840696661
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Over Glass",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5551269159942,
+                        38.1890421527476
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Oviesse",
+                    "category": "Department Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545453295577,
+                        38.1854197119101
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "P. G. B. Tomatore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5510140283857,
+                        38.1952117278049
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pace",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5744433639914,
+                        38.2375414998717
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pace ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5766109825975,
+                        38.242214453816
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Paino ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5370169161243,
+                        38.1961568935257
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palacultura",
+                    "category": "Library",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517444918104,
+                        38.1977772385801
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palacultura",
+                    "category": "ExhibitionorConferenceCenter",
+                    "type": "Exhibitions"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516944206658,
+                        38.1977890000109
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palazzo Zanca",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529665132875,
+                        38.1938823041962
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palazzo Zanca",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522154657893,
+                        38.1938988135466
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palazzo Zanca",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538671691403,
+                        38.194126462167
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palestra Body's Art",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5464810368384,
+                        38.1825110133209
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palestra Sportime",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5502045618065,
+                        38.2032960801061
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Palmares ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5572659362813,
+                        38.2188716316998
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pam",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.560907668323,
+                        38.2195334490164
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pam",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5973985293765,
+                        38.261672611952
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pandolfo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5523716562246,
+                        38.188008626815
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Panificio Bruno",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.559213535296,
+                        38.2117862498661
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Panificio Cannata Salvatore ",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5145821920006,
+                        38.1201250844068
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Panificio di Filocamo Antonina",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516777579953,
+                        38.2061269744029
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Panificio Fratelli Bitto",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5350766415831,
+                        38.1860354097522
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Panificio Giacoppo",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5265221905846,
+                        38.1721183457884
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pantano Grande ",
+                    "category": "Waterway Element",
+                    "type": "Lake"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6139371450195,
+                        38.2607450193183
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pantano Piccolo",
+                    "category": "Waterway Element",
+                    "type": "Lake"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6341293546274,
+                        38.2689959089137
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Papisca",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461050213126,
+                        38.1772031341521
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pappagallo",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492554256036,
+                        38.1956413464231
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pappamondo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547825497196,
+                        38.1893734244271
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Paradis",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5667111973416,
+                        38.2272978880046
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Paradisiculo",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5487431525653,
+                        38.1837201677864
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5222480968172,
+                        38.1404646435113
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5954968350768,
+                        38.2599952844516
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5963912556376,
+                        38.261092093711
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.52299767718,
+                        38.1424864265657
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5229955397395,
+                        38.1426383623931
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5614281362812,
+                        38.2150594625209
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5647873276047,
+                        38.2164716912821
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5972201293441,
+                        38.2600093562797
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5944201044567,
+                        38.2613357706196
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5953805658346,
+                        38.2616281692585
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio Est Annunziata",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5647381966057,
+                        38.2164914544493
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parcheggio Scoperto",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5323374108358,
+                        38.1580815344948
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parisi ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5536809003746,
+                        38.1976313516466
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parrello Domenico",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5413842018938,
+                        38.1724737294983
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parrocchia S. Paolino Vescovo",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5142304665746,
+                        38.119303734041
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parrocchia San Clemente",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5471625188375,
+                        38.1810827072526
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parrocchia Santa Domenica",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.523342648697,
+                        38.1380696134974
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Parrocchia Santa Maria Dell Arco",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5588422203104,
+                        38.2079888509677
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Amgo",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526903581414,
+                        38.2093245830787
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Benevento Luca",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560250586855,
+                        38.2072119391802
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Corio Giovanna",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518202055753,
+                        38.2060606644145
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Cristo Re",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477857590231,
+                        38.1965981299612
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Cristo Rè",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542473139064,
+                        38.1923588659488
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Dolce Vita",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547225868541,
+                        38.1858273236771
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria e Gelateria Vmci",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5363177539268,
+                        38.212308885224
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Fili De Grazia",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5540566718088,
+                        38.1929857515596
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Freni",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5290000702232,
+                        38.1530857088043
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Giacobbe",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5444400956925,
+                        38.1723018662954
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Giacobbe Giuseppe",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5417308076669,
+                        38.1809023618526
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria la Messina",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5981056169974,
+                        38.2548623001681
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria la Messina",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5981155520614,
+                        38.2548703435025
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pasticceria Nuovo Millenium",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5668825506439,
+                        38.2275086162528
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pezzolo",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4570428700576,
+                        38.084508173838
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pezzolo",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4579083248927,
+                        38.0863795453371
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza Antonello ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5520318050327,
+                        38.1935960615345
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza Duomo",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5514926137607,
+                        38.1923159910319
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza Rodia",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4782309759018,
+                        38.2713816697789
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza Salvatore Pugliatti",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5505981768952,
+                        38.1888220413543
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza San Francesco ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511126294387,
+                        38.1983210890024
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piazza XXIV Maggio",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5520577268339,
+                        38.216353137301
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piemonte ",
+                    "category": "Hospital/Polyclinic",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5428425365251,
+                        38.1819511905789
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piemonte-Pronto Soccorso",
+                    "category": "Hospital/Polyclinic",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419383183289,
+                        38.1824227929121
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piero",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5507309129945,
+                        38.185921688368
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pim",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5454415824166,
+                        38.1799570557212
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pisani Antonino i C. Dolciumi",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556149691802,
+                        38.1850293551115
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Piscina Comunale",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461674863363,
+                        38.1772714023036
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pizza Planet",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5520276443369,
+                        38.1856298584609
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pizzeria la Scala",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4770638329308,
+                        38.2707944122356
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pizzeria-Ristorante Antica Torre",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4707971219192,
+                        38.2632367759774
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Pizzino Giuseppe",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558505220916,
+                        38.204498080501
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Policlinico G. Martino",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5310220382563,
+                        38.1621939220323
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Policlinico Universitario ",
+                    "category": "Hospital/Polyclinic",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5360198819712,
+                        38.1631759429653
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Policlinico Universitario ",
+                    "category": "Hospital",
+                    "type": "Public_Buildings"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5343202057704,
+                        38.1638950099017
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Policlinico Universitario-Pronto Soccorso",
+                    "category": "Hospital/Polyclinic",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.536006247792,
+                        38.1631278964516
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Polisportiva Cristo Re",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5488802414793,
+                        38.1956835753523
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Polizia Messina",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5543018360919,
+                        38.1994736073551
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Polizia Municipale",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.558636013469,
+                        38.1860676206805
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Polizia Via Gran Priorato",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548601684854,
+                        38.199802104075
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Polizia Via Villari",
+                    "category": "Police Station",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5469118801797,
+                        38.1841094630775
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Porta Messina ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5600367225759,
+                        38.1872387612725
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Portella",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5229214348579,
+                        38.2362486419056
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Porto di Messina",
+                    "category": "Waterway Element",
+                    "type": "WaterElements"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5605869461062,
+                        38.192887552887
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Porto di Messina",
+                    "category": "Marina",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559536566911,
+                        38.1992864030342
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Positano Calzature",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5480365275107,
+                        38.1838368209941
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4812481778183,
+                        38.0654340748823
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4988796543228,
+                        38.0898086059439
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4938790978558,
+                        38.0993558265261
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4804060944635,
+                        38.099747764514
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4778505980817,
+                        38.0998058090115
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.477836439282,
+                        38.0998277352224
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5058229291182,
+                        38.1046806952259
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5069661938676,
+                        38.120359418365
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5216622506855,
+                        38.1349998551296
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5231248108434,
+                        38.1428628859608
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5040769307913,
+                        38.1508359962462
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5148486875379,
+                        38.1571500971878
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5364438982218,
+                        38.1636867443388
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.538448522498,
+                        38.164307897899
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4981765024459,
+                        38.1661129270624
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5285102982343,
+                        38.1693436312997
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5076322274087,
+                        38.1735544821034
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368109623125,
+                        38.1775195485284
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5454917528117,
+                        38.1800652520008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5502193817112,
+                        38.1832202513004
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5478520689603,
+                        38.1835070745322
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560996734756,
+                        38.1843683543239
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517538902762,
+                        38.1860094436564
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5460066322355,
+                        38.1865823516776
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539161761393,
+                        38.1919934456465
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5402448528466,
+                        38.193482947644
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5529227566323,
+                        38.1951576784239
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5217342684141,
+                        38.196041419787
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5450292317644,
+                        38.1981296887041
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556379195952,
+                        38.201262228081
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556085014618,
+                        38.2023836938768
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5541316337571,
+                        38.2038992464758
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5484912115885,
+                        38.2076805091117
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5464559571455,
+                        38.2115346182127
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5602957487013,
+                        38.2141004995586
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5561855903826,
+                        38.2143151823962
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5660858561834,
+                        38.2265752141327
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4667625177325,
+                        38.2336445803759
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5715707941766,
+                        38.2362904845159
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6027729369969,
+                        38.2568604764371
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6050308975292,
+                        38.2603438460028
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5810589897813,
+                        38.2613071603817
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6380913465091,
+                        38.265410057506
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5365587419603,
+                        38.2740410947826
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4872958749509,
+                        38.2755946355105
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419649943043,
+                        38.2954818362181
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane AJtolia",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4449630795077,
+                        38.0762148018869
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Bordonaro ",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5114891224544,
+                        38.176313534904
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Camaro",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5328599977137,
+                        38.1870256872042
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Castanea delle Furie",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5188365101868,
+                        38.2629819710939
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Galati Marina",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5058470015941,
+                        38.1046698116347
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Giampilieri",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4701153074682,
+                        38.0671704899878
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Larderia",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5001254033402,
+                        38.1409580674734
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina 10",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477641593661,
+                        38.1745748256955
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina 15",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5481988303954,
+                        38.2330011802346
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina 2",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556103498961,
+                        38.2024036954879
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina 4",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5470748734781,
+                        38.1899611531381
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina 8",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5600678823454,
+                        38.2136945756344
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Messina Pistunina",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5236901136837,
+                        38.1442630297701
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Mili Marina",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5120076379096,
+                        38.1151128485129
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Pezzolo",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4567876699103,
+                        38.0839801838547
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Scala Ritiro",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5357669484075,
+                        38.2125752126171
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste Italiane Torrefaro",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6354253642325,
+                        38.2661912911977
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste ltaliane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554778510571,
+                        38.1819220376983
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste ltaliane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5188546535942,
+                        38.2629620630972
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste ttaliane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4701311594334,
+                        38.0671895566256
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste ttaliane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5478612814565,
+                        38.1746872396905
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Poste ttaliane",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5462896466696,
+                        38.175645549138
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Prestige",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511241118558,
+                        38.1826806743902
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Princi Dr. Gianluca",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5479684211302,
+                        38.1810574865142
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Principe",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509039153808,
+                        38.2304707430661
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Principe Umberto",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5450062578848,
+                        38.1944009020272
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Principe Umberto",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5450082567408,
+                        38.1944009110709
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Progresso",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5552753870249,
+                        38.1871085304859
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Punto G",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518356090991,
+                        38.1879071544653
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4929378802859,
+                        38.0776222463189
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4981752400008,
+                        38.0864195344352
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5014591457562,
+                        38.0945669425
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5301496224428,
+                        38.1552243221301
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5371465012596,
+                        38.1647726439379
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5772702332764,
+                        38.2410125235043
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5992124012323,
+                        38.2555032630493
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Q8",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4795244257177,
+                        38.269402444937
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Qui",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461073045427,
+                        38.1727687158916
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Qui Conviene",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6342636960328,
+                        38.265006253699
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Raffa e Marchese",
+                    "category": "Automobile Dealership",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4487401113713,
+                        38.242554948194
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Raffaele Giovanni",
+                    "category": "Vehicle RepairFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5509071944913,
+                        38.1913345992228
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ragno Emanuele e Stellario",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5514099188033,
+                        38.2071823476245
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Residence San Martino",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5466132652248,
+                        38.1782121538543
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Residenza Annunziata",
+                    "category": "Guest House",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5527213286439,
+                        38.2212934983392
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ridi",
+                    "category": "Vehicle Rep air Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5490430384077,
+                        38.1793261254336
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ristorante Sporting",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6223674416745,
+                        38.2716791805401
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo Christian",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5308050171623,
+                        38.1526063182449
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo dello Stretto",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5589034131099,
+                        38.2106202091314
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo Extra",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526634955081,
+                        38.1826898729333
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo il Vero Kebab Lucas",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.554559988162,
+                        38.1922543653737
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo la Scala ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4779713622207,
+                        38.2712105153963
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo Oasi 2000",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4767798750786,
+                        38.2706701265134
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ritrovo Terzo Tempo",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5973694973224,
+                        38.2615455206204
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Rizzo",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560809149789,
+                        38.2130801287643
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Robert Due",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5522568711855,
+                        38.1891836747009
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Rodia",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4785536377762,
+                        38.2684932236841
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Rodia",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4773304210254,
+                        38.2693215826669
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Rosselli Dr. Antonella",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5424801146711,
+                        38.2059829751637
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Rossopomodoro",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5287545365861,
+                        38.1525017692956
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Royal Palace Hotel",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556635867656,
+                        38.1847167406502
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S. Cuore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5460170780067,
+                        38.1907829129353
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S. Francesco e Immacolata ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5513595899154,
+                        38.1979153882233
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S. M. Gallo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538682175172,
+                        38.1824036097927
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S. Maria Annunziata e S. Giuseppe",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5342238841972,
+                        38.1916354306246
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S. Maria di Porto Salvo dei Marinai",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526451169169,
+                        38.2027077105189
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S.e.b.a.r.",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5389818581961,
+                        38.1681030449771
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "S.e.b.a.r.",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547160333123,
+                        38.1985475131072
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sacca Dr. Felice",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5392487182491,
+                        38.1686421015563
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Luca Evangelista",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542293413969,
+                        38.2041995981704
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Martino",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5491475131109,
+                        38.1801903083163
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Michele",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5247569998802,
+                        38.2249252733946
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Michele",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5246746462386,
+                        38.2249429810459
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Nicolò",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5501765540494,
+                        38.1813347179072
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Saba",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4951979283353,
+                        38.281434574875
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "San Saba",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.495960054318,
+                        38.2822132780008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sant'Agata ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5979732772625,
+                        38.2547807081264
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sant'Agata ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5983974565039,
+                        38.2548382362821
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Caterina",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538443431415,
+                        38.1878475741956
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Lucia ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5168754015656,
+                        38.1556039149861
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Lucia ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5175951447394,
+                        38.1562902454127
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Margherita",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4940635571128,
+                        38.0991517609595
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Margherita ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4937191311871,
+                        38.0991252315973
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria di Gesu",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406825399277,
+                        38.1712628771498
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria di Gesu",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546718781169,
+                        38.2066348090383
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria di Pompei",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498628514198,
+                        38.2002135709614
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria di Pompei ",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5497179156363,
+                        38.2003448461077
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria di Porto Salvo",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5580709116482,
+                        38.2042085749213
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria la Nuova",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5495379726273,
+                        38.2034059210728
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santa Maria la Nuova ",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496139362862,
+                        38.2034072761857
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santi Pietro e Paolo",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448799877115,
+                        38.1714034586257
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santo Nicola",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5374766039729,
+                        38.1667424880309
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santo Stefano di Briga",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4776654231924,
+                        38.0994370770836
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santo Stefano di Briga",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4784785982174,
+                        38.1001720298695
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santo Stefano Mezzano",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4851374115725,
+                        38.1014792369546
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santo Stefano Mezzano",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.484499524365,
+                        38.1020449042308
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santuario Montalto",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5484940422876,
+                        38.1933326003828
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santuario S. Antonio",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5484396673724,
+                        38.183532814059
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Santuario S. Maria di Montaìto",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482328130618,
+                        38.1933753627309
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sant’Elia ",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5558029011296,
+                        38.1883465613212
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sapore Divino ",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6313568909821,
+                        38.2620616423436
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sciaranira",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552275997223,
+                        38.1928934526667
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scisap Rent",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5489889063534,
+                        38.1856056499951
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scola Danza Koros",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532859900624,
+                        38.1851249243445
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scola Danza Koros",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532859786483,
+                        38.1851249243451
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Elementare Mario Passamonte",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5426441548946,
+                        38.1921306536516
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Elementare Paritaria D. Savio Messina",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482208370615,
+                        38.1912430615317
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Materna Paradiso",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5642277623945,
+                        38.2252129928862
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Materna Pezzolo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.458592866515,
+                        38.0854550770542
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Media Giovanni Pascoli",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534975499501,
+                        38.1998157220064
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Media Statale Verona Trento",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5508649702537,
+                        38.1948271657758
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4938743133971,
+                        38.1410068317854
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6395156771182,
+                        38.2650368624943
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria A. Manzoni",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5528503928369,
+                        38.1857576620851
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Beata Eustachia",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504270194957,
+                        38.1956398292969
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Buon Pastore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5471459516689,
+                        38.1950056997961
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Case Gescal",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5204959603124,
+                        38.171638331356
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Castanea",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5189609341582,
+                        38.2630525288041
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Cesare Battisti ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506446787549,
+                        38.2076495998235
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Collegio S. Ignazio",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496641823169,
+                        38.2057666766096
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Collereale ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443898839429,
+                        38.1785016512082
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria E. Castronovo ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4692606691572,
+                        38.2332364258152
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria F. Petrarca",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6050514113591,
+                        38.2588154738545
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Faro Superiore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5789247791096,
+                        38.2676679280211
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Fr. Galati Marina",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5508862182608,
+                        38.1844089498252
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Francesco Crispi",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539065382899,
+                        38.2019268898576
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Galatti",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493445230988,
+                        38.188036454043
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Ganzim Via Denaro",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6039187033524,
+                        38.2577675297959
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Ganzim Via Papardo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6026770361735,
+                        38.2561882605658
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Giampilieri Sup.",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4685676906776,
+                        38.0686687243713
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Giovanni XXIIl",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5373506413769,
+                        38.1630112245708
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Istituto Leone Xlll",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533645379519,
+                        38.2004888618571
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria L. Boer",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5541027908534,
+                        38.2046778367792
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria L. Radice",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5360187815273,
+                        38.2124524352766
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Larderia lnferiore",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4994749806672,
+                        38.1413128994418
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Luigi Boer",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5465567679068,
+                        38.2084961662487
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Massa S. Lucia",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461315118819,
+                        38.2012337474353
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Michele Trimarchi",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5401769191919,
+                        38.1639061227851
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Mili San Pietro",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4960405966765,
+                        38.1221717238044
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria N. Tommaseo",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55185385589,
+                        38.1864087702206
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Principe di Piemonte",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5492312791092,
+                        38.1771537750359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Rione Montepiselli",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443271867658,
+                        38.1889846430749
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria S. Giovanni Bosco",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5461598024768,
+                        38.1792276733164
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria S. Stefano di Briga ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.479135971364,
+                        38.1002276597631
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria S. Stefano Medio ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4831813401771,
+                        38.1018519672118
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Salice",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4910507169343,
+                        38.2502283547235
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria San Saba",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552029539026,
+                        38.2969205282035
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Sant'Agata",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5988512791936,
+                        38.2558014671053
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Santa Chiara",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511769902289,
+                        38.1977375969565
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Santa Margherita",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4938624637339,
+                        38.0993077660223
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria SpartĂ ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5133546636194,
+                        38.1174493059029
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Tommaso Cannizzaro",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496302978502,
+                        38.1872540681232
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Valle degli Angeli",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5390377061276,
+                        38.1705194484959
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Via Catania ",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5451855859603,
+                        38.1794360423816
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Villagio AJdisio",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5259870499925,
+                        38.1704304440651
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Primaria Zafferia",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5209565519179,
+                        38.1455367973687
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria di I Grado la Farina",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516692652813,
+                        38.1948829097176
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria di I Grado S. Francesco di Paola",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551739699321,
+                        38.2191636550519
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria di II Grado E. Ainis",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5393525375106,
+                        38.1718594450071
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado A. M. di Francia",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5469593327756,
+                        38.1857780940625
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado Evemero da M. T. F.",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6151959719692,
+                        38.2592048834358
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado G. Leopardi",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5311529759538,
+                        38.1616627232211
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado G. Mazzini",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5512106121968,
+                        38.1924626192435
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado Gaetano Martino",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5221247562133,
+                        38.1399822397399
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado Galatti",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5493444089536,
+                        38.1880364540453
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado Giorgio la Pira",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5288077707347,
+                        38.186716838722
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado L. da Vmci",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5034510587335,
+                        38.0986277876452
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado Madonna della Lettera",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538789091414,
+                        38.2093281459981
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado S. D'Acquisto",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5301959615477,
+                        38.1503752642967
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria I Grado VannAntò",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.544391204029,
+                        38.2126635532191
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria II Grado Antonello",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552867669857,
+                        38.2083437602144
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria II Grado I. S. Bisazza",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.558470188977,
+                        38.2186483489507
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Scuola Secondaria II Grado Iti Marconi",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511341487535,
+                        38.197585450111
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sea Bar Torre Faro",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6419658014237,
+                        38.2662359363518
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sea Flight",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496540558887,
+                        38.1810263826947
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Seminario Arcivescovile S. Pio X",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5475819621041,
+                        38.212810437955
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Servizi Sport",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5478666109176,
+                        38.1962146445139
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Shanghai",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551823472052,
+                        38.1925854434932
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sharon ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516228177643,
+                        38.1844273900635
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Shawanna Iyad",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549292254141,
+                        38.1863438085427
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sicily by Car",
+                    "category": "RentACarFacility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5547680935538,
+                        38.1947594540777
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "sigma",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5224231708376,
+                        38.1409802780504
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "sigma",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5539638790396,
+                        38.1888357839383
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Simply Market",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5657497041707,
+                        38.2291357381866
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Simply Viale Regina Elena",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5564403774575,
+                        38.2137995575389
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ski Center",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5535289977205,
+                        38.1843133479213
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sma",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5419720416821,
+                        38.1722005755304
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sma",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.548528636535,
+                        38.1723431911819
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sma",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443101250282,
+                        38.1784732880823
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Snack Bar",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5278864549286,
+                        38.1484191645807
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spadano",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545824896313,
+                        38.2042962171628
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "SpartĂ ",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5323140646466,
+                        38.2938011045558
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "SpartĂ ",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5300381633953,
+                        38.2948341349055
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spatafora Salvatore",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534725186273,
+                        38.1907708016296
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spatari Dott. Antonio",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5533133566716,
+                        38.1846752110862
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia del Lido di Mortella",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6307106522518,
+                        38.2719352084536
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Acquarone",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5515777484375,
+                        38.297311270633
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Briga Marina",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4973721950309,
+                        38.0853941535512
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Capo Rasocolmo",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.521419288134,
+                        38.2945668125454
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Casa Bianca",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5857714600992,
+                        38.2803835715453
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Galati Marina",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5091051342244,
+                        38.108504655921
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Ganzirri",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6102401164703,
+                        38.2575552294099
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Giampilieri Marina",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4810402692194,
+                        38.0647623468704
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Gimpilieri Marina",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4862037090637,
+                        38.0684681092764
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Mili Marina ",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5148282313869,
+                        38.117703099148
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Orto Liuzzo",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4551180735408,
+                        38.2559189688631
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Pace",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.573580018867,
+                        38.23696365902
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Rodia",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4747201135162,
+                        38.269412927754
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Salvatore dei Greci",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.560500234014,
+                        38.214026482961
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di San Saba",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4966605089548,
+                        38.2832747711012
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Sant'Agata",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5961989017655,
+                        38.2529220413425
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia di Torre Palazzo",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6317453947576,
+                        38.2618445385971
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Spiaggia dOro",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6081006056063,
+                        38.2731047996947
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sport 4 Club 2",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5545478306898,
+                        38.1840212177399
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sport Piu",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5423127054537,
+                        38.1896769725394
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Sporting",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5029254795254,
+                        38.0977946327633
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Stadio",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5369022415253,
+                        38.1646855326902
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Stadio Giovanni Celeste",
+                    "category": "SportsActivity",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5371964216592,
+                        38.1647808751915
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Stadio San Filippo",
+                    "category": "SportsActivity",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.521289980423,
+                        38.1602681014356
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Strumenti Musicali Piparo",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5562883649793,
+                        38.204099270603
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Danza di Mariangela Bonanno",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5489403136196,
+                        38.1985988256255
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Dentistico",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5530109148771,
+                        38.1930028526078
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Dentistico",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.558835971356,
+                        38.2072240913464
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Dentistico Associato Campo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556920236308,
+                        38.205370030914
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Dentistico Associato Currò",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5475923037132,
+                        38.1916099910525
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio di Valutazione Medico Legale",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532993622619,
+                        38.182810804794
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Medico Cecconi Giusj",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548470527742,
+                        38.2022131906797
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Medico di Pietro Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5513636909621,
+                        38.1841902610805
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Studio Medico Girbino Giuseppe",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511297209434,
+                        38.1847299759131
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Trattoria da Nonna Angela",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5980008938312,
+                        38.2545649130781
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Trattoria la Terrazza",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.60950608526,
+                        38.2581235916978
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Trattoria Mar.Belli",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5508103106686,
+                        38.1865308443852
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tremestieri",
+                    "category": "Rest Area",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5176755529869,
+                        38.1319473141996
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tremestieri",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5217821068278,
+                        38.1380354121035
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tremestieri",
+                    "category": "Railway Station",
+                    "type": "Rail_Station"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.524603341568,
+                        38.138183464889
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tremestieri",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5229452597431,
+                        38.1424112080494
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tremestieri Ovest ",
+                    "category": "Rest Area",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5158471888299,
+                        38.1440964289278
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Tuodi",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5458824858397,
+                        38.1816805074806
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "U.S. Antonello",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5377012497432,
+                        38.2133739841173
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uanella",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548577946589,
+                        38.1998520752866
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UbertĂ ",
+                    "category": "Coffee Shop",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5587654266375,
+                        38.2069008752458
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ubreria Editrice Genal",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.551806050486,
+                        38.1879829898782
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ubreria Michele lntilla",
+                    "category": "Book Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5528154896304,
+                        38.1908057150305
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uci",
+                    "category": "Cinema",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5207771168125,
+                        38.1363952201795
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Udo Spiaggia dOro",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6117392425134,
+                        38.2727209920684
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uffici Giudiziari",
+                    "category": "CourtHouse",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5511629889443,
+                        38.1882878735645
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uffici Giudiziari",
+                    "category": "CourtHouse",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5517758148315,
+                        38.1902790367369
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale C.so C. B. Cavour",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5518353599187,
+                        38.1932652593264
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Strada San Giacomo",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534911534899,
+                        38.1918834950991
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via C. Battisti",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5469876640575,
+                        38.1824034217855
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Chione",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5457465958621,
+                        38.1869989877841
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Monte Scuderi",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.546299356948,
+                        38.2116218547855
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Nicola Fabrizi",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5559872962507,
+                        38.1844238098027
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via P. Castelli",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406673537042,
+                        38.1932630022434
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Palermo",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5380060070784,
+                        38.2119289235332
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Risorgimento",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5534977074863,
+                        38.1874161046964
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Santa Cecilia",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519903923082,
+                        38.181670084546
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Uberto Bonino",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5392790820598,
+                        38.1649935384349
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via Vecchia Comunale",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5372562860737,
+                        38.1655958650816
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Ufficio Postale Via XXVII Luglio",
+                    "category": "Post Office",
+                    "type": "Public_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5514806688818,
+                        38.1861851029522
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uni Euro ",
+                    "category": "Consumer Electronics Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5233059588073,
+                        38.1435015057893
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5515792108876,
+                        38.1831786273158
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5540578436159,
+                        38.1848416347573
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550140847851,
+                        38.1894244899852
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550519121151,
+                        38.1894456594704
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549708329024,
+                        38.1895096348436
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496161253284,
+                        38.1896741458111
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544512909705,
+                        38.1896897627291
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5562457611362,
+                        38.2005893107435
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542504392358,
+                        38.2045845605358
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5590083515951,
+                        38.2112884650127
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5477189454469,
+                        38.211742457345
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Petrol Station",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5594831783428,
+                        38.2176714360379
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5633043668593,
+                        38.2199925083008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniCredit Banca di Roma",
+                    "category": "ATM",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5544221955202,
+                        38.1894377160645
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Unipol Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5550307790038,
+                        38.1841384354584
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Unipol Banca",
+                    "category": "Bank",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5586855848546,
+                        38.2066176022096
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniversitĂ  di Messina",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506955967005,
+                        38.1887615185711
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniversitĂ  di Messina ",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5952024875408,
+                        38.2609835596595
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniversitĂ  di Messina Farmacia e Veterinaria",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5504257496504,
+                        38.2302495820164
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "UniversitĂ  di Messina-Scienze",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.596863283307,
+                        38.2608014071701
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uomo Club",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5543374538274,
+                        38.188741564966
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Uons",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5506118272368,
+                        38.2041726765899
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Up To Date",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5540567392678,
+                        38.1836570488743
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vadala Candeloro",
+                    "category": "Vehicle Repair Facility",
+                    "type": "Automobile_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498971218682,
+                        38.1861996890868
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Valle degli Angeli",
+                    "category": "School",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5368324244472,
+                        38.1702622263144
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Velia ",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.552518094949,
+                        38.183948747058
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Verdura Salvatore",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5516193820355,
+                        38.1843524000862
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Veterinaria",
+                    "category": "UniversityorCollege",
+                    "type": "School"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5485091346586,
+                        38.2310863107306
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Alessio Valore",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5595625634678,
+                        38.1874154803248
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Calabria",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5594707015066,
+                        38.1864693839211
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via del Santo",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5415924785786,
+                        38.1781556884959
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Enrico Fermi",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5390216181153,
+                        38.1622683016901
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Enrico Fermi",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5385050308019,
+                        38.1626377550426
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Giuseppe la Farina",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5563004715035,
+                        38.1841193818267
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Giuseppe Natoli",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548555687009,
+                        38.1835088380022
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Santa Cecilia",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.556794544183,
+                        38.1790254919807
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via Stazione",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5582033501275,
+                        38.1849779814292
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Via XXVII Luglio",
+                    "category": "ParkingGarage",
+                    "type": "Enclosed_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5555117757413,
+                        38.1838497872266
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Annunziata",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5617521454509,
+                        38.2181009074337
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Annunziata",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5619603796296,
+                        38.2183258033534
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5505095088371,
+                        38.178128409594
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5491100814544,
+                        38.1789175841491
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5473858623075,
+                        38.1795612909096
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5471317021909,
+                        38.1798609953084
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5428564206561,
+                        38.1820992028878
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5420081202704,
+                        38.1825790644878
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5476836852052,
+                        38.1795706806585
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Europa ",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5414622543725,
+                        38.1828534138502
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Viale Giostra",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5567115999681,
+                        38.2063094707239
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Angela",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5072720197601,
+                        38.1055341575105
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Dante",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5426245599465,
+                        38.1726334740677
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Dante",
+                    "category": "Park (City/County)",
+                    "type": "Regio Nat State Park"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5435830534037,
+                        38.174250353833
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Mazzini",
+                    "category": "Recreation Facility",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5538028051655,
+                        38.1973720145668
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Mazzini",
+                    "category": "Historical Monument",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546931701761,
+                        38.1980799305801
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Mazzini",
+                    "category": "Park (City/County)",
+                    "type": "Regio Nat State Park"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5542644970598,
+                        38.1982283322008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Villa Morgana",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6202193047691,
+                        38.263573914931
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vinci Via Catania",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5437851082555,
+                        38.1766354837458
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vinci Via Giuseppe Garibaldi",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5556693825739,
+                        38.2030617397408
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vinci Viale Principe Umberto",
+                    "category": "Grocery Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5479880753452,
+                        38.1972118597972
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vittorio Emanuele ",
+                    "category": "Theatre",
+                    "type": "Cultural"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5548414172069,
+                        38.1955115318462
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vivifit Centro Fitness",
+                    "category": "SportsCenter",
+                    "type": "Sport_Recreation"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6216538781409,
+                        38.2613104219038
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Voglia di Pane di Impoco Antonino",
+                    "category": "Specialty Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5449987934442,
+                        38.1910020706298
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Vola Palace Hotel",
+                    "category": "HotelorMotel",
+                    "type": "Hotel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4460658842289,
+                        38.2433811232125
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Volo Food Drink",
+                    "category": "Restaurant",
+                    "type": "Restaurant"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5531756808452,
+                        38.1916950860638
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Xstore",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.55166151882,
+                        38.1832669809049
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zafferia",
+                    "category": "Builtup_Area",
+                    "type": "Builtup_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5050346764312,
+                        38.1518787896341
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zafferia",
+                    "category": "City Center",
+                    "type": "City_Town_Center"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5072201906703,
+                        38.151983279883
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zanghi Dr. Letterio",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498393202176,
+                        38.1832464636887
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zingales Dr. Giuseppe",
+                    "category": "Pharmacy",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.526279545153,
+                        38.1723491280017
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zodda Angelo",
+                    "category": "Medical Service",
+                    "type": "Medical_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5525169333552,
+                        38.1785096642632
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zona Artigianale Ponte Gallo",
+                    "category": "Industrial Complex",
+                    "type": "lndustrial_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4485834921004,
+                        38.2424085174864
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zona Artigianale Ponte Gallo",
+                    "category": "Industrial Zone",
+                    "type": "Industry"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4478644203992,
+                        38.2428227491759
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "Zuiki",
+                    "category": "Clothing Store",
+                    "type": "Retail_Services"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5532624412444,
+                        38.1850658345941
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5107818234629,
+                        38.2818791188834
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5111498039966,
+                        38.2685919951373
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5056126373036,
+                        38.2803221341406
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4894017187199,
+                        38.2733851108389
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.502221195375,
+                        38.2694635282884
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5005993830532,
+                        38.2760616117849
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4995329245695,
+                        38.2818683205641
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5149415924456,
+                        38.2925519268494
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5233751929904,
+                        38.2949335835413
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5241107581395,
+                        38.2696121444226
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4747120591527,
+                        38.2491595733598
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5277234905383,
+                        38.2829527290488
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5574231103001,
+                        38.2886572396089
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5591295244413,
+                        38.2637738380369
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.464900576113,
+                        38.2543191362326
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.540581239513,
+                        38.2727898737723
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5482731304455,
+                        38.2844142151521
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.542269260273,
+                        38.2600533203343
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5129487504671,
+                        38.2544305374279
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.53306407591,
+                        38.2017504078724
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5189689652048,
+                        38.1959068878751
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5000647081072,
+                        38.137342070797
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4875018289484,
+                        38.2687035605982
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4975006719007,
+                        38.2668352889877
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4791012125718,
+                        38.2651832733988
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5546657029525,
+                        38.2806761781646
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443830786154,
+                        38.2971107995307
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5394246160319,
+                        38.2103961676187
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.561360752229,
+                        38.2594496088082
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4899583934744,
+                        38.2364216133143
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5526624990206,
+                        38.2480698093592
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5519944172887,
+                        38.2637870833382
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5746563898537,
+                        38.2569089578717
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5566858286437,
+                        38.2503439053559
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5657816326819,
+                        38.2712726743644
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5341074852629,
+                        38.2306083267553
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.509773761628,
+                        38.1556874217097
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.553415056308,
+                        38.2135369376268
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5103798502909,
+                        38.1539713294724
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4704155252689,
+                        38.2434726527313
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4700676889692,
+                        38.2370134390299
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4723831803256,
+                        38.1244738675135
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4842741295897,
+                        38.1385017825937
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5131934752533,
+                        38.1375080804883
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4888429128137,
+                        38.1692971328292
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4818172626491,
+                        38.1651895073523
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5192832163452,
+                        38.2151980140053
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4835743458812,
+                        38.2194698836646
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4853134035033,
+                        38.2575081466897
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5204543376577,
+                        38.2252498607127
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5102434837057,
+                        38.1881706258913
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Woodland",
+                    "type": "Forest"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5203159807295,
+                        38.2076273700179
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5408990698765,
+                        38.1584882416036
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.50111734943,
+                        38.0933604595779
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4984473535391,
+                        38.2848535406462
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5412576260481,
+                        38.2962329723205
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.451808085663,
+                        38.2539052444143
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.474018965749,
+                        38.2689853162528
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5611355604291,
+                        38.2139385484871
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.6093958046836,
+                        38.2751836000225
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Beach",
+                    "type": "Sand_Area"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5934437309442,
+                        38.2478678848772
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5257328064158,
+                        38.1514100308085
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5229815236317,
+                        38.1794082964126
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.52261068538,
+                        38.1781683939567
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4655745831444,
+                        38.2507811442759
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5448741635612,
+                        38.2061410341932
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5180309780985,
+                        38.1746857152798
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5184193237675,
+                        38.1748874596342
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5443344963442,
+                        38.2071305780731
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.526191307653,
+                        38.187569294106
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5258263733457,
+                        38.1872452017822
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5255974789881,
+                        38.1873086088388
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5259908365827,
+                        38.1876416601204
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5129012996768,
+                        38.1612290334081
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5126863970896,
+                        38.1613876119318
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.526920336906,
+                        38.1503299671945
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.547104644132,
+                        38.1046367948107
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5267153982309,
+                        38.1885973802461
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5129188995452,
+                        38.1618813827136
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5268911699871,
+                        38.1884422574525
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.498576711086,
+                        38.2339294595798
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5121349770892,
+                        38.1583089939637
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5449299273099,
+                        38.2042727170004
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5447470251707,
+                        38.204557090155
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5444917368025,
+                        38.2063182718488
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5120387916659,
+                        38.1586051081703
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5265284427188,
+                        38.1879347416725
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5193882484494,
+                        38.1751733194118
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5261760317724,
+                        38.1878291300605
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.526407205727,
+                        38.1881051131671
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5128579587805,
+                        38.1606765283226
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4678865719354,
+                        38.2501515020912
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4703019571855,
+                        38.248353336652
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5127270268074,
+                        38.1621403927238
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5231600577872,
+                        38.1790581459629
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5233442181692,
+                        38.1799936744206
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Bridge"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4680775237617,
+                        38.249871208403
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4766210724536,
+                        38.0627957634089
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4759482737173,
+                        38.0617530003574
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.528512817471,
+                        38.1932481341556
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.526653427724,
+                        38.2191951936429
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4520405483813,
+                        38.2471140796647
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.518439679007,
+                        38.2244917284089
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5152635225663,
+                        38.2257095417118
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5139487004034,
+                        38.2261915428916
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5145117142324,
+                        38.2259859232038
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5138863563511,
+                        38.2250003468348
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5156445535003,
+                        38.2242251864531
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5203282915521,
+                        38.2225068993353
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5209235876712,
+                        38.2231699497944
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5165873638792,
+                        38.2238064203008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5184073778338,
+                        38.2230527108615
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4728079557137,
+                        38.0551263714417
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5231295078689,
+                        38.1820590732295
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5230691916796,
+                        38.1840059574549
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5230357062062,
+                        38.1838058721593
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4791707517797,
+                        38.2205174306975
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4830084802309,
+                        38.2173165710431
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5225304292392,
+                        38.221784966897
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5287153350243,
+                        38.2161842488374
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5274005392689,
+                        38.2188788038259
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5280841493226,
+                        38.2181455958974
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5269961495867,
+                        38.2188169331434
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5232701492219,
+                        38.2213121695578
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.524322729424,
+                        38.2207287354211
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5271134342084,
+                        38.2191723556111
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5051010471512,
+                        38.2285209507603
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.475942824971,
+                        38.244163772223
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4746532287614,
+                        38.2446525554158
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.47704939739,
+                        38.0630365653445
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4749948253607,
+                        38.0586888281987
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5228635571647,
+                        38.1821984999428
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5279025636451,
+                        38.1914087931888
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5276052101423,
+                        38.1912610246584
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5274275272222,
+                        38.1904100660717
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5287781638275,
+                        38.190970186175
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4914706301503,
+                        38.0797018988864
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4912610272403,
+                        38.0784876068972
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4927570739273,
+                        38.0820022569805
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4884275483294,
+                        38.0728439125563
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4956377403159,
+                        38.0883053398408
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.540710672996,
+                        38.1876272043176
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Brunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5319779389484,
+                        38.1957284658747
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4930889150881,
+                        38.0821223328899
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5431475961051,
+                        38.2018935585372
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4911565896278,
+                        38.0795325736757
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5404127249052,
+                        38.189365193455
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4910130412729,
+                        38.0784979456939
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4872777422428,
+                        38.0717589365974
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4963272462422,
+                        38.0894523166154
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4525275900911,
+                        38.2474828967245
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4543410304691,
+                        38.2476735516396
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406340951491,
+                        38.1885065340946
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4878171398583,
+                        38.0728160730659
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4531754860123,
+                        38.2473984621696
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5309056817786,
+                        38.1949380192729
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4553269708524,
+                        38.2475599907365
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4944295885412,
+                        38.0852174788576
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4964430976611,
+                        38.0900018306525
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5303778061481,
+                        38.1948535700008
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5136412141691,
+                        38.170201785758
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5406360262777,
+                        38.1871403571375
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4944966881077,
+                        38.2077088625751
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.506446359894,
+                        38.1976534340644
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4997428681113,
+                        38.2032749180515
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4777735070082,
+                        38.0640873451109
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4849043311204,
+                        38.0703233762659
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4841003458031,
+                        38.0695573991403
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5224692603515,
+                        38.1775871095708
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5127116876404,
+                        38.1652522083161
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5216988813241,
+                        38.176654168704
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4985458950787,
+                        38.0930916487234
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5135589097825,
+                        38.1698465279993
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4983569414826,
+                        38.0932404332124
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.521789478556,
+                        38.1770724429405
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4958054047696,
+                        38.0890379091773
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5130871984853,
+                        38.1676358823247
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5133262414892,
+                        38.1675479311154
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5138187315913,
+                        38.1698577387781
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.49454006427,
+                        38.0864865384212
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4723704243232,
+                        38.2262085278691
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4923345274017,
+                        38.0811791505047
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5008024600206,
+                        38.0983458507902
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.51296302307,
+                        38.1653286863186
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5129317358399,
+                        38.164835386263
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5233478287785,
+                        38.1801786248896
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5139012243093,
+                        38.1701880062486
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5017183483642,
+                        38.0996093440559
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4947590144305,
+                        38.0865052238851
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4764220504474,
+                        38.0622057177527
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5425666191621,
+                        38.2015801305692
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5410362903393,
+                        38.2001742775593
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5373149623331,
+                        38.1913459960867
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.501468182031,
+                        38.0996089264454
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4719105724592,
+                        38.0543857717816
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5384446774806,
+                        38.2230876163316
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5098337985328,
+                        38.227687970328
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.508682549744,
+                        38.2272437283186
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4858602240132,
+                        38.2149407465258
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4865040257462,
+                        38.2144039530036
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.52836431357,
+                        38.2166691027373
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5276174509843,
+                        38.2178551842818
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4768387685581,
+                        38.2434782159989
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Brunnel",
+                    "type": "Tunnel"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4758299336897,
+                        38.2439769507065
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5385232634557,
+                        38.1565113547995
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.541004762811,
+                        38.1597534673161
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5331228807353,
+                        38.1497032058405
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5015718353133,
+                        38.0970532471696
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5125810624625,
+                        38.1175656502453
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5138507328621,
+                        38.1202189727869
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.522110539152,
+                        38.190532525023
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5157542130807,
+                        38.1911779344139
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5140803194647,
+                        38.191387937547
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5333589643443,
+                        38.1742200741416
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5267440819691,
+                        38.1405111506359
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.521000007891,
+                        38.1315450023142
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5386609755943,
+                        38.1856858130594
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5442163948176,
+                        38.1640344971603
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4925296730303,
+                        38.0799455046039
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4907193283484,
+                        38.0762783835517
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.487311311043,
+                        38.0712792658918
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.486308506608,
+                        38.0703649150225
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5327740844098,
+                        38.1925072363995
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5108405590017,
+                        38.1150434313276
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.477019517766,
+                        38.0613098297074
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.537880566692,
+                        38.168460777911
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5359279629809,
+                        38.180891510054
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5158574850393,
+                        38.1232289328224
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.517632034208,
+                        38.1260912119305
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5027994699435,
+                        38.1004310984554
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.560481617711,
+                        38.1852305607957
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5367852547303,
+                        38.1843183432388
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5056147333073,
+                        38.1077141561919
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5297277953294,
+                        38.1918618121075
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5297420098091,
+                        38.1450943618991
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5280977737802,
+                        38.1426292137228
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.549861287998,
+                        38.171513737707
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.534707729668,
+                        38.1768154606783
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4950485930121,
+                        38.0853070166696
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5396472061803,
+                        38.190136338249
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4806630865579,
+                        38.0658327310414
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4774489724039,
+                        38.0620315727131
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4766501137896,
+                        38.0605783704228
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4750462813965,
+                        38.0556223666908
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4611869564975,
+                        38.2322219869451
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5349444317524,
+                        38.1698008502097
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4993404398728,
+                        38.0928876621272
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5560813064883,
+                        38.179928516745
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5436371926627,
+                        38.1680650099676
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5138309002016,
+                        38.1915450437035
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5229609622229,
+                        38.1344406238362
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Railway Element",
+                    "type": "Rail"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5336657382764,
+                        38.1715266367567
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Place of Worship",
+                    "type": "Religious_Facility"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.4864600077085,
+                        38.0693529866941
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5753165257886,
+                        38.2406664934859
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5955034182639,
+                        38.2581929437535
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5415313528331,
+                        38.1827037900026
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5078667617697,
+                        38.1536097202411
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5014599280057,
+                        38.0909842315186
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5503578180337,
+                        38.2200108856442
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5232421307396,
+                        38.143348262019
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5985721120609,
+                        38.2683048014158
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5162196142132,
+                        38.161893811946
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.520921063941,
+                        38.1367957502826
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5014599839925,
+                        38.0908941399829
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5503578066142,
+                        38.2200108856445
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5255794340801,
+                        38.1473317673775
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5253023011066,
+                        38.1469626031161
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5486792723197,
+                        38.1789125702239
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5290408785427,
+                        38.1701738170623
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5256202822882,
+                        38.1540195666499
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5934968558429,
+                        38.2627379536719
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5496306514021,
+                        38.1894702852543
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5232485184597,
+                        38.1715652311663
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5428661966221,
+                        38.1819952851469
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5498698766064,
+                        38.1785092822047
+                    ]
+                }
+            },
+            {
+                "type": "Feature",
+                "properties": {
+                    "name": "",
+                    "category": "Open Parking Area",
+                    "type": "Open_Carpark"
+                },
+                "geometry": {
+                    "type": "Point",
+                    "coordinates": [
+                        15.5414660147697,
+                        38.1674309006378
+                    ]
+                }
+            }
+        ]
+    },
+    "total": 1531,
+    "count": 1531,
+    "page": 0,
+    "totalPages": 1,
+    "nextPage": true
+}
\ No newline at end of file