Skip to content

Instantly share code, notes, and snippets.

@hhkaos
Last active September 12, 2022 07:35
Show Gist options
  • Select an option

  • Save hhkaos/341cfd4c8101afb5d56e35eda561e24e to your computer and use it in GitHub Desktop.

Select an option

Save hhkaos/341cfd4c8101afb5d56e35eda561e24e to your computer and use it in GitHub Desktop.
Comisarias españa (fuente: policia.es)

Recuperado de https://www.policia.es/_es/dependencias_localizador_accesible_provincias.php# con el siguiente código:

let comisarias = {
  "type": "FeatureCollection",
  "features":[]
};

document.querySelectorAll(".list-group-flush .list-group-item").forEach(el =>{
    [lat,lon] = el.querySelector(".col-12 a").href.split("?q=")[1].split(",");
    comisarias.features.push({
      "type": "Feature",
      "properties": {
        nombre: el.querySelector(".display-4").innerText,
        direccion: el.querySelector(".row > dd").innerText
      },
      "geometry": {
        "type": "Point",
        "coordinates": [
          parseFloat(lon.replace(/%20/g, '')),
          parseFloat(lat.replace(/%20/g, '')),
        ]
      }
    })
});
copy(comisarias)
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Galicia",
"direccion": "Avda. do Porto da Coruña n.º 5-7"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.403144,
43.366103
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de A Coruña",
"direccion": "C/ Médico Devesa Nuñez n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.415411,
43.346526
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de A Coruña - Norte",
"direccion": "Avda. do Porto da Coruña n.º 7"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.403142,
43.366103
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de A Coruña - Sur",
"direccion": "C/ Médico Devesa Nuñez n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.415409,
43.346526
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Santiago de Compostela",
"direccion": "C/ Rodrigo de Padrón s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.546348,
42.878508
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Santa Uxía de Ribeira",
"direccion": "Avda. Miguel Rodríguez Bautista n.º 24"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.994268,
42.556907
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Ferrol - Narón",
"direccion": "Avda. de Vigo n.º 165"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.224969,
43.484703
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Albacete",
"direccion": "C/ Buen Pastor n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.847443,
38.993764
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Hellín",
"direccion": "C/ Fortunato Arias n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.696874,
38.506924
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Elche",
"direccion": "C/ Abeto n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.687649,
38.262634
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Alicante",
"direccion": "C/ Isabel la Católica n.º 25"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.495026,
38.340695
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alicante Norte",
"direccion": "C/ Diputado Joaquín Fuster n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.483484,
38.37072
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alicante Centro",
"direccion": "C/ Médico Pascual Pérez n.º 27"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.487898,
38.34588
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Torrevieja",
"direccion": "C/ Arquitecto Larramendi n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.667962,
37.980911
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Elda - Petrer",
"direccion": "C/ Lamberto Amat n.º 26"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.797716,
38.475819
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alcoy",
"direccion": "C/ Perú n.º 10"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.482967,
38.700337
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Benidorm",
"direccion": "C/ Apolo XI n.º 36"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.134215,
38.539636
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Denia",
"direccion": "C/ Castell D´Olimbroi n.º 5"
},
"geometry": {
"type": "Point",
"coordinates": [
0.11362,
38.840619
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Orihuela",
"direccion": "C/ El Sol n.º 34"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.950971,
38.083576
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Puesto Fronterizo Aeropuerto El Altet",
"direccion": "Aeropuerto Altet"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.560045,
38.285512
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Almería",
"direccion": "Avda. Mediterráneo n.º 201"
},
"geometry": {
"type": "Point",
"coordinates": [
-2.447673,
36.840706
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de El Ejido-Dalias",
"direccion": "Avda. del Bulevar n.º 117"
},
"geometry": {
"type": "Point",
"coordinates": [
-2.820781,
36.77254
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Vitoria",
"direccion": "C/ Olaguíbel n.º 11"
},
"geometry": {
"type": "Point",
"coordinates": [
-2.66982,
42.846663
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Asturias",
"direccion": "C/ Plácido Arango Arias, n.º 9"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.853604,
43.362858
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Oficina de Denuncias y Atención al Ciudadano",
"direccion": "Avenida de Buenavista s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.865249,
43.3585462
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de La Pola Siero",
"direccion": "C/ Maestros Martín Galache s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.663986,
43.387452
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Mieres",
"direccion": "C/ Valeriano Miranda n.º 39"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.776237,
43.248214
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Dependencias Policiales de Lugones",
"direccion": "C/ Monte Naranco - esq. Alejandro Casona"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.812468,
43.402867
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Langreo - San Martín del Rey Aurelio",
"direccion": "C/ Conde Sizzo n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.691042,
43.305512
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Dependencias Policiales del Coto - Gijón (2)",
"direccion": "C/ Feijoo n.º 44-46"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.650649,
43.532018
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Avilés",
"direccion": "C/ Río San Martín n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.931439,
43.551023
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Gijón",
"direccion": "Pl. Padre Máximo González s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.677461,
43.538124
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Luarca",
"direccion": "C/ Olavarrieta n.º 25"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.533838,
43.544377
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Ávila",
"direccion": "P.º San Roque n.º 34"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.685693,
40.652909
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Extremadura",
"direccion": "Avda. Ramón y Cajal n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.978004,
38.876977
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Badajoz",
"direccion": "Avda. Ramón y Cajal n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.978005,
38.876974
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Almendralejo",
"direccion": "Pl. de España n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.407671,
38.684472
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Don Benito-Villanueva de la Serena",
"direccion": "Avda. de Córdoba, s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.852953,
38.957233
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Mérida",
"direccion": "Avda. de las Comunidades, s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.333337,
38.926472
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía Illes Balears",
"direccion": "C/ Simó Ballester, n.º 8 (antigua C/ Ruiz de Alda, n.º 8)"
},
"geometry": {
"type": "Point",
"coordinates": [
2.642914,
39.574304
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Centro",
"direccion": "C/ Simó Ballester n.º 8 (antigua C/ Ruiz de Alda, 8)"
},
"geometry": {
"type": "Point",
"coordinates": [
2.642913,
39.574306
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Playa de Palma",
"direccion": "C/ Marbella n.º 37"
},
"geometry": {
"type": "Point",
"coordinates": [
2.73617,
39.525923
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Palma Aeropuerto",
"direccion": "Aeropuerto de Son San Juan"
},
"geometry": {
"type": "Point",
"coordinates": [
2.731208,
39.547971
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Oeste",
"direccion": "Ctra. Valldemossa n.º 13"
},
"geometry": {
"type": "Point",
"coordinates": [
2.650735,
39.586044
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Manacor",
"direccion": "C/ Rambla Rei Jaume n.º 8"
},
"geometry": {
"type": "Point",
"coordinates": [
3.212736,
39.565646
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Ciutadella de Menorca",
"direccion": "C/ República Argentina n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
3.833045,
39.999358
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Eivissa",
"direccion": "Avda. de la Paz s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
1.421113,
38.908249
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Mahón",
"direccion": "C/ Concepción n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
4.26754,
39.888547
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Cataluña",
"direccion": "Complejo Policial de la Verneda, sito en Rambla Guipuzcoa n.º 76-80"
},
"geometry": {
"type": "Point",
"coordinates": [
2.198958,
41.417363
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Manresa",
"direccion": "C/ Soler i March n.º 5"
},
"geometry": {
"type": "Point",
"coordinates": [
1.8248,
41.730985
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de L'Hospitalet de Llobregat",
"direccion": "Pl. Repartidor n.º 8"
},
"geometry": {
"type": "Point",
"coordinates": [
2.100019,
41.361726
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Terrasa",
"direccion": "C/ Baldrich n.º 9-13"
},
"geometry": {
"type": "Point",
"coordinates": [
2.014787,
41.560664
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Vic",
"direccion": "C/ Bisbe Morgades n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
2.251437,
41.928565
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Santa Coloma de Gramanet",
"direccion": "C/ Irlanda n.º 67"
},
"geometry": {
"type": "Point",
"coordinates": [
2.214229,
41.449699
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Vilanova i La Geltrú",
"direccion": "Pl. de los Coches n.º 5"
},
"geometry": {
"type": "Point",
"coordinates": [
1.726195,
41.224841
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sant Feliú de LLobregat",
"direccion": "C/ Carreretes n.º 9-11"
},
"geometry": {
"type": "Point",
"coordinates": [
2.04496,
41.379614
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Barcelona-Aeropuerto",
"direccion": "Aeropuerto del Prat de Llobregat"
},
"geometry": {
"type": "Point",
"coordinates": [
2.073704,
41.290069
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Igualada",
"direccion": "C/ Prat de la Riba n.º 13"
},
"geometry": {
"type": "Point",
"coordinates": [
1.60891,
41.582464
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Badalona",
"direccion": "Avingunda dels Vents n.º 9-13"
},
"geometry": {
"type": "Point",
"coordinates": [
2.238162,
41.457286
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Castelldefels-Gavá",
"direccion": "C/ Obispo Urguinaona n.º 17"
},
"geometry": {
"type": "Point",
"coordinates": [
1.982686,
41.282294
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Cerdanyola",
"direccion": "C/ Mare de Deu de les Feixes n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
2.14071,
41.484641
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Cornellá - Esplugas de Llobregat",
"direccion": "Avda. Sant Ildefons s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
2.08209,
41.365828
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Mataró",
"direccion": "Avda. Gatassa n.º 15"
},
"geometry": {
"type": "Point",
"coordinates": [
2.430006,
41.537034
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Montcada i Reixac",
"direccion": "C/ Major n.º 38"
},
"geometry": {
"type": "Point",
"coordinates": [
2.187863,
41.485426
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Ripollet",
"direccion": "C/ Tamarit n.º 78"
},
"geometry": {
"type": "Point",
"coordinates": [
2.162109,
41.497248
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Rubí",
"direccion": "C/ Terrassa, 16-18"
},
"geometry": {
"type": "Point",
"coordinates": [
2.030034,
41.492535
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sabadell",
"direccion": "C/ Montseny, 137"
},
"geometry": {
"type": "Point",
"coordinates": [
2.107728,
41.557394
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sant Adriá de Besós",
"direccion": "Avda. Joan XXIII, 2"
},
"geometry": {
"type": "Point",
"coordinates": [
2.218488,
41.432243
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sant Boi de Llobregat",
"direccion": "C/ Riera Basté n.º 43 Local-1 (Mercat Municipal Centre-La Muntanyeta)"
},
"geometry": {
"type": "Point",
"coordinates": [
2.034983,
41.345274
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sant Cugat del Vallés",
"direccion": "C/ Vallés n.º 1-3"
},
"geometry": {
"type": "Point",
"coordinates": [
2.085781,
41.473032
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Burgos",
"direccion": "Avda. Castilla y León n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.685468,
42.347564
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Aranda de Duero",
"direccion": "C/ San Francisco n.º 92"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.684537,
41.683532
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Miranda de Ebro",
"direccion": "C/ Antonio Cabezón n.º 14"
},
"geometry": {
"type": "Point",
"coordinates": [
-2.939869,
42.682852
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Cáceres",
"direccion": "Avda. Pierre de Coubertain n.º 13"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.377845,
39.455757
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Plasencia",
"direccion": "C/ Cueva de la Serrana s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.093412,
40.036861
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Cádiz",
"direccion": "C/ Santa María Soledad, 6 Edificio Torre Tavira II - (Pirulí Telefónica)"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.28705,
36.522635
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de El Puerto de Santa María - Puerto Real",
"direccion": "Avda. de la Constitución n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.23045,
36.592503
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Rota",
"direccion": "Avda. Príncipes de España n.º 113"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.377675,
36.629457
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de El Puerto de Santa María - Puerto Real (2)",
"direccion": "C/ Carpintero de Ribera s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.196281,
36.528946
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de San Fernando",
"direccion": "Avda. de la Constitución s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.216765,
36.460412
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de La Línea de la Concepción",
"direccion": "Avda. Menéndez Pelayo n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.34441,
36.16251
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Algeciras",
"direccion": "Avda. del Cuerpo Nacional de Policía s/n (antigua Avda. Embarcadero s/n)"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.4546,
36.15759
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Jerez de la Frontera",
"direccion": "Pl. del Arroyo n.º 46-47"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.141054,
36.683471
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sanlúcar de Barrameda",
"direccion": "P.º del Jardín Botánico, n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.354193,
36.771963
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Cantabría",
"direccion": "Avda. del Deporte n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.847267,
43.461777
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Centro",
"direccion": "C/ Jose Ramon Lopez-Doriga n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.80087,
43.463787
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Torrelavega",
"direccion": "C/ Joaquín Hoyos n.º 18"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.045401,
43.349446
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Castellón",
"direccion": "C/ Río Sella n.º 5"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.033309,
39.973558
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Puesto Fronterizo Aeropuerto de Castellón",
"direccion": "Ctra. Cv-13, Km 2.4"
},
"geometry": {
"type": "Point",
"coordinates": [
0.06728,
40.205209
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Vila-Real",
"direccion": "C/ Comunión n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.101638,
39.938104
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Vinaroz",
"direccion": "Pl. San Telmo s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
0.477976,
40.470539
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Ceuta",
"direccion": "P.º de Colón n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.312127,
35.886701
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Ciudad Real",
"direccion": "Rda. de Toledo n.º 27"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.922606,
38.992709
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Puertollano",
"direccion": "C/ Cruces n.º 26"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.110854,
38.689307
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Valdepeñas",
"direccion": "C/ Amapolas nº 12"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.386576,
38.770611
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alcázar de San Juan",
"direccion": "Avda. Álvarez Guerra n.º 10"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.205914,
39.39467
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Conjunta Judá-Leví",
"direccion": "Pl. Judá Leví s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.781839,
37.879067
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Córdoba",
"direccion": "Avda. Dr. Fleming n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.784759,
37.879573
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Córdoba-Oeste",
"direccion": "Avda. del Mediterráneo s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.8053307,
37.893155
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Conjunta Polígono Guadalquivir",
"direccion": "C/ Libertador Juan Rafael Moran n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.78452,
37.859676
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Córdoba-Este",
"direccion": "Avda. Campo Madre de Dios n.º 11"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.766793,
37.881145
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Lucena",
"direccion": "C/ Miguel Cruz Cuenca n.º 5"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.493761,
37.408949
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Cabra",
"direccion": "C/ Víctimas del terrorismo s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.44042,
37.475807
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Cuenca",
"direccion": "C/ Astrana Marín n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-2.139358,
40.072314
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Tarancón",
"direccion": "Pl. del Ayuntamiento n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.004389,
40.012977
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Lleida",
"direccion": "C/ Ensenyança n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
0.622835,
41.619996
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Girona",
"direccion": "C/ Sant Pau n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
2.825422,
41.99013
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Lloret de Mar",
"direccion": "C/ Verge de Loreto n.º 51"
},
"geometry": {
"type": "Point",
"coordinates": [
2.842861,
41.700979
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Unidad Extranjería y Documentación de Camprodón",
"direccion": "Crta. Comarcal- c-38, km 11.500"
},
"geometry": {
"type": "Point",
"coordinates": [
2.377543,
42.317578
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Figueras",
"direccion": "C/ Pep Ventura n.º 8"
},
"geometry": {
"type": "Point",
"coordinates": [
2.959109,
42.266921
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Unidad Extranjería y Documentación de La Junquera",
"direccion": "C/ Major n.º 136-138"
},
"geometry": {
"type": "Point",
"coordinates": [
2.872126,
42.42193
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Unidad Extranjería y Documentación de Portbou",
"direccion": "Edif. Estació Renfe s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
3.157964,
42.424312
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Unidad Extranjería y Documentación de Puigcerdá",
"direccion": "Avinguda de Francia n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
1.93701,
42.432935
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sant Feliú de Guixols",
"direccion": "C/ Ortiz de la Vega n.º 6-8"
},
"geometry": {
"type": "Point",
"coordinates": [
3.034679,
41.784517
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Puesto Fronterizo Aeropuerto de Girona",
"direccion": "Aeropuerto"
},
"geometry": {
"type": "Point",
"coordinates": [
2.762985,
41.902533
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Granada-Sur",
"direccion": "C/ Chile n.º 13"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.602534,
37.154218
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría del Puerto de Motril",
"direccion": "Avda. Julio Moreno (recinto portuario)"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.512748,
36.744475
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Baza",
"direccion": "C/ Alhóndiga n.º 18"
},
"geometry": {
"type": "Point",
"coordinates": [
-2.774672,
37.489499
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Andalucía Oriental",
"direccion": "C/ La Palmita, n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.62165,
37.199051
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Granada-Norte",
"direccion": "C/ La Palmita n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.621639,
37.19917
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Granada-Centro",
"direccion": "Pl. de los Campos n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.595788,
37.172823
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Motril",
"direccion": "C/ Aguas del Hospital s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.520818,
36.740919
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Guadalajara",
"direccion": "Avda. del Ejército n.º 12"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.174287,
40.634055
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Donostia/San Sebastián",
"direccion": "Calle José María Salaberría s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.980005,
43.306054
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Irún",
"direccion": "Pl. del Ensanche, 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.792345,
43.340326
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Huelva",
"direccion": "Pº de la Glorieta n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.954981,
37.261979
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Unidad Extranjería y Documentación de Ayamonte",
"direccion": "Avda. Alcalde Narciso Martín Navarro n.º 20"
},
"geometry": {
"type": "Point",
"coordinates": [
-7.404618,
37.209215
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Huesca",
"direccion": "Pl. de Luis Buñuel n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.4087,
42.13615
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Jaca",
"direccion": "Avda. de Zaragoza n.º 14"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.548385,
42.57293
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "FRAGA (Unidad de Extranjería y Documentación)",
"direccion": "Pl, de España n.º 1 (Ayuntamiento, 3ª planta)"
},
"geometry": {
"type": "Point",
"coordinates": [
0.352148,
41.521449
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Jaén",
"direccion": "C/ Arquitecto Bergés n.º 11"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.790056,
37.771594
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Linares",
"direccion": "C/ Hernán Cortés n.º 16"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.63679,
38.097883
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Úbeda",
"direccion": "Pl. Vázquez de Molina n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.367683,
38.00778
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Andújar",
"direccion": "C/ Corredera S. Bartolomé n.º 43"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.059806,
38.040317
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de la Rioja",
"direccion": "C/ Serradero, 26"
},
"geometry": {
"type": "Point",
"coordinates": [
-2.465775,
42.450889
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Canarias",
"direccion": "C/ Luis Doreste Silva, 68"
},
"geometry": {
"type": "Point",
"coordinates": [
-15.425603,
28.121807
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Las Palmas de Gran Canaria Sur",
"direccion": "C/ Córdoba n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-15.414451,
28.095185
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Las Palmas de Gran Canaria Norte",
"direccion": "C/ Juan Rejón, 62"
},
"geometry": {
"type": "Point",
"coordinates": [
-15.421954,
28.149688
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Las Palmas de Gran Canaria Centro",
"direccion": "C/ Luis Doreste Silva, 68"
},
"geometry": {
"type": "Point",
"coordinates": [
-15.425596,
28.121795
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Arrecife",
"direccion": "C/ Mastelero s/n, esquina con Vía Medular"
},
"geometry": {
"type": "Point",
"coordinates": [
-13.540657,
28.966248
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Telde",
"direccion": "C/ Escultor Eduardo Chillida Juantegui, s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-15.413262,
27.998823
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Santa Lucía de Tirajana",
"direccion": "C/ Escorial esquina Dr. Negrín s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-15.443637,
27.85036
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Puerto del Rosario",
"direccion": "C/ Herbania, 28"
},
"geometry": {
"type": "Point",
"coordinates": [
-13.864062,
28.501637
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Maspalomas",
"direccion": "Avda. de Moya, 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-15.570686,
27.764919
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de León",
"direccion": "C/ Villa Benavente, 6"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.573511,
42.59561
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Ponferrada",
"direccion": "C/ Río Oza, s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.593571,
42.552767
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Astorga",
"direccion": "Pl. de los Marqueses s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.059911,
42.455645
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de San Andrés de Rabanedo",
"direccion": "Gta. de Donantes de Sangre, 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.595845,
42.601618
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Lugo",
"direccion": "C/ Chantada s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-7.563397,
43.011454
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Viveiro",
"direccion": "Avda. Ramón Canosa s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-7.594267,
43.664831
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Monforte de Lemos",
"direccion": "C/ Miguel de Cervantes n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-7.510245,
42.518132
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Torrejón de Ardoz",
"direccion": "C/ Hilados n.º 15"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.459996,
40.446672
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Tetuán",
"direccion": "C/ Maestro Ladrilleros n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.698515,
40.464646
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Pozuelo de Alarcón",
"direccion": "C.º de las Huertas nº 36"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.811638,
40.444637
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Leganés",
"direccion": "Avda. de Universidad n.º 27"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.766345,
40.331158
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de San Blas",
"direccion": "C/ Alberique s/n, esq. Avda. Hellín"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.615956,
40.429431
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Chamberí",
"direccion": "C/ Rafael Calvo n.º 33"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.691791,
40.434311
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Getafe",
"direccion": "C/ Churruca n.º 6"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.730387,
40.313837
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Hortaleza- Barajas",
"direccion": "C/ Javier del Quinto s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.642284,
40.468725
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Madrid",
"direccion": "C/ Doctor Federico Rubio y Galí n.º 55"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.712471,
40.452417
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alcalá de Henares",
"direccion": "Avda. de Meco s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.35726,
40.493791
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Móstoles",
"direccion": "C/ de Granada n.º 9"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.87987,
40.327217
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Centro",
"direccion": "C/ Leganitos n.º 19"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.710169,
40.421834
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Ciudad Lineal",
"direccion": "Tr.ª Virgen de la Roca n.º 25"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.656433,
40.435484
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Chamartín",
"direccion": "Avda. PÍo XII n.º 48"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.672139,
40.469156
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Fuencarral - El Pardo",
"direccion": "C/ Mirador de la Reina n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.725752,
40.488194
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Carabanchel",
"direccion": "C/ Padre Amigó n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.739942,
40.380115
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Arganzuela",
"direccion": "Rda. de Toledo n.º 26"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.706186,
40.405676
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Villa de Vallecas",
"direccion": "Pl. de las Regiones s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.670283,
40.379681
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Salamanca",
"direccion": "C/ Príncipe de Asturias n.º 8"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.671668,
40.428134
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Retiro",
"direccion": "C/ Huertas n.º 76-78"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.694865,
40.41302
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Puente de Vallecas",
"direccion": "C/ Peña Trevinca s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.661941,
40.393035
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Moratalaz",
"direccion": "C/ La Tacona s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.639684,
40.397456
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Moncloa - Aravaca",
"direccion": "C/ Rey Francisco n.º 15"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.716519,
40.42721
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de la Latina",
"direccion": "Avda. de los Poblados nº 51"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.75722,
40.383333
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Villaverde",
"direccion": "P.º Gigantes y Cabezudos n.º 30"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.69382,
40.357717
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Usera",
"direccion": "C/ Primitiva Gañán s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.709441,
40.38072
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alcorcón",
"direccion": "C/ Alfredo Nobel n.º 10"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.831971,
40.334356
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Fuenlabrada",
"direccion": "Avda. de los Ángeles n.º 9"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.790713,
40.287127
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Majadahonda",
"direccion": "Ctra. Villanueva del Pardillo n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.886157,
40.476072
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Aranjuez",
"direccion": "Avda. Principe n.º 40"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.598691,
40.035558
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alcobendas - San Sebastian de los Reyes",
"direccion": "Avda. España n.º 52"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.635602,
40.547455
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Coslada - San Fernando",
"direccion": "C/ Guadalquivir n.º 16"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.539667,
40.42424
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Parla",
"direccion": "Avda. Juan Carlos I, n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-3.772687,
40.234031
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "SATE de Estepona",
"direccion": "Pl. de las Flores s/n, junto a la Oficina de Turismo"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.145395,
36.425726
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Málaga",
"direccion": "Pl. Manuel Azaña n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.448763,
36.714407
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Málaga Centro - La Merced",
"direccion": "C/ Ramos Marín n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.41809,
36.724715
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Málaga Oeste",
"direccion": "Pl. Manuel Azaña n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.448767,
36.714418
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Málaga Norte",
"direccion": "Avda. de la Palmilla n.º 20"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.425991,
36.738748
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Málaga Este - El Palo",
"direccion": "Avda. Sebastián Elcano n.º 144"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.36569,
36.722106
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Vélez Málaga",
"direccion": "Avda. Andalucía n.º 55 A"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.088202,
36.744649
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Marbella",
"direccion": "Avda. Arias de Velasco n.º 25"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.884937,
36.516917
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Estepona",
"direccion": "C/ Valle Inclán n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.14958,
36.432212
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Torremolinos - Benalmádena",
"direccion": "C/ Skal n.º 12"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.498458,
36.619708
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Ronda",
"direccion": "Avda. de Málaga n.º 9"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.158397,
36.746987
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Fuengirola",
"direccion": "Avda. Conde San Isidro n.º 98"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.626576,
36.534814
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Antequera",
"direccion": "C/ Ciudad de Oaxaca"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.571597,
37.022333
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Melilla",
"direccion": "C/ Actor Tallaví n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-2.939994,
35.289043
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de la Región de Murcia",
"direccion": "Plaza de Ceballos, 13"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.126921,
37.983296
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de El Carmen",
"direccion": "Pl. de la Industria n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.132023,
37.974972
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de San Andrés",
"direccion": "C/ Escultor José Sánchez Lozano nº 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.140396,
37.986089
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Molina de Segura",
"direccion": "C/ Canarias, 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.217146,
38.060487
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Yecla",
"direccion": "C/ Rambla, 34"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.11006,
38.61379
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alcantarilla",
"direccion": "C/ Eras n.º 15"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.211744,
37.969702
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Cartagena",
"direccion": "C/ Menéndez y Pelayo n.º 6"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.992842,
37.605324
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Lorca",
"direccion": "Pl. de la Policía Nacional n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.696753,
37.664244
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Tudela",
"direccion": "Plaza Padre Lasa, 7"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.603317,
42.055412
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Navarra",
"direccion": "C/ General Chinchilla, 3-5"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.647655,
42.814851
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Ourense",
"direccion": "C/ Mestre Vide n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-7.860586,
42.344608
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Palencia",
"direccion": "Avda. Simón Nieto, 8"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.53803,
42.016279
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Pontevedra",
"direccion": "C/ Joaquín Costa n.º 17"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.640362,
42.428703
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Vigo Centro",
"direccion": "C/ Luis Taboada n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.723817,
42.24
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Vigo Traviesas",
"direccion": "C/ Alvaro Cunqueiro n.º 6"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.731117,
42.2245
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Lalín",
"direccion": "Pl. de Galicia n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.116585,
42.660678
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Marín",
"direccion": "C/ Lameira n.º 27 bajo"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.7046,
42.393375
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Vilagarcía de Arousa",
"direccion": "Avda. de la Marina n.º 9"
},
"geometry": {
"type": "Point",
"coordinates": [
-8.767796,
42.596001
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Salamanca (2)",
"direccion": "C/ Jardines s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.658226,
40.958902
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Salamanca",
"direccion": "C/ Ronda Sancti Spiritu n.º 8-12"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.658227,
40.958904
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Béjar",
"direccion": "C/ Veintiocho de Septiembre n.º 26"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.764205,
40.387954
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Unidad de Extranjería y Documentación de Vilar Formoso -Fuentes de Oñoro",
"direccion": "Pl. Europa n.º 7"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.825277,
40.606684
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Santa Cruz de Tenerife",
"direccion": "C/ Robayna, 23"
},
"geometry": {
"type": "Point",
"coordinates": [
-16.256654,
28.469586
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Tenerife Sur",
"direccion": "Avda. Tres de Mayo, 32"
},
"geometry": {
"type": "Point",
"coordinates": [
-16.259036,
28.458796
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Tenerife Norte",
"direccion": "C/ Ramón Pérez de Ayala, 6"
},
"geometry": {
"type": "Point",
"coordinates": [
-16.268974,
28.463051
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de La Laguna",
"direccion": "C/ Nava y Grimón, 66"
},
"geometry": {
"type": "Point",
"coordinates": [
-16.312524,
28.491586
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Sur de Tenerife - Adeje",
"direccion": "Sector Cero, Parcela C.N.P., Las Terrazas"
},
"geometry": {
"type": "Point",
"coordinates": [
-16.72504,
28.067869
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Puerto de la Cruz - Los Realejos",
"direccion": "Avda. José del Campo Llarena, 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-16.556282,
28.415086
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Santa de Cruz de la Palma",
"direccion": "C/ Pérez Galdós, 16"
},
"geometry": {
"type": "Point",
"coordinates": [
-17.760762,
28.688025
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Segovia",
"direccion": "P.º Ezequiel González n.º 22"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.121395,
40.944135
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Andalucía Occidental",
"direccion": "Avda. de Blas Infante, 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.006016,
37.376405
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sevilla-Este",
"direccion": "C/ Francisco Aragón Álvarez, 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.920825,
37.403151
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sevilla-Centro",
"direccion": "Pza. de la Alameda, 39"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.994145,
37.400474
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sevilla-Nervión",
"direccion": "Avda. Cruz del Campo, 17"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.96517,
37.385676
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sevilla-Sur",
"direccion": "C/ Castillo Alcalá de Guadaira, 17 A"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.968766,
37.359956
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sevilla-Triana",
"direccion": "C.º de los Descubrimientos n.º 2. (junto a Torre Sevilla)"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.011497,
37.400379
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sevilla-Macarena",
"direccion": "Avda. de la Barzola s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.975647,
37.415106
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Camas",
"direccion": "C/ Maestro Isaias Martín Pinillo s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.036494,
37.400852
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Coria del Rio",
"direccion": "C/ Corbones n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.050708,
37.293048
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de San Juan de Aznalfarache",
"direccion": "C/ Veintiocho de Febrero, 59"
},
"geometry": {
"type": "Point",
"coordinates": [
-6.033897,
37.359396
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Morón de la Frontera",
"direccion": "C/ La Carrera, 18"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.455493,
37.121375
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Écija",
"direccion": "C/ Cuatro de Diciembre, s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.076027,
37.533627
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Dos Hermanas",
"direccion": "C/ Luis Ortega Bru s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.925566,
37.29099
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alcalá de Guadaira",
"direccion": "C/ Maestro Casado s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.832109,
37.337754
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Soria",
"direccion": "C/ Nicolás Rabal n.º 9"
},
"geometry": {
"type": "Point",
"coordinates": [
-2.470967,
41.763415
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Tarragona",
"direccion": "Pl. de Orleans s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
1.241773,
41.120061
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Reus",
"direccion": "C/ General Moragues n.º 54"
},
"geometry": {
"type": "Point",
"coordinates": [
1.106305,
41.159621
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Tortosa",
"direccion": "P.º Joan Moreira n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
0.518075,
40.807456
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Teruel",
"direccion": "C/ Córdoba n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.10328,
40.336366
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alcañiz",
"direccion": "Rda. de Caspe n.º 1"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.126799,
41.051669
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Castilla-La Mancha",
"direccion": "Avda. de Portugal s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.035818,
39.875396
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Talavera de la Reina",
"direccion": "C/ Carlos Barral n.º 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.81767,
39.958736
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de la Comunidad Valenciana",
"direccion": "C/ Gran Vía de Ramón y Cajal n.º 40"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.383927,
39.4693
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "SATE de Gandía",
"direccion": "Avda. de la Paz n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.157959,
38.995543
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Valencia Patraix",
"direccion": "C/ D' Els Gremis n.º 6, Polígono Vara de Quart"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.410783,
39.460353
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Valencia Ruzafa",
"direccion": "C/ Zapadores n.º 52"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.36716,
39.45576
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Valencia Tránsitos",
"direccion": "Pl. Roncesvalles n.º 7"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.378565,
39.487538
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Valencia Exposición",
"direccion": "P.º Alameda n.º 17"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.363809,
39.473527
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Valencia Marítimo",
"direccion": "C/ Chulilla n.º 16"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.327087,
39.466338
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Valencia Centro",
"direccion": "C/ Maldonado n.º 18"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.381852,
39.471929
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Valencia Abastos",
"direccion": "C/ Buen Orden, s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.387913,
39.468135
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Mislata",
"direccion": "C/ San Francisco de Asís n.º 11"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.41255,
39.471472
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Burjasot-Godella",
"direccion": "C/ José Carsi n.º 10"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.408772,
39.508554
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Paterna",
"direccion": "C/ de las Rosas n.º 27"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.451684,
39.510441
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Quart de Poblet - Manises",
"direccion": "Avda. San Onofre n.º 65"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.450476,
39.482483
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Alcira-Algemesí",
"direccion": "C/ Pedro Morell n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.440548,
39.149113
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Puesto fronterizo Aeropuerto Manises",
"direccion": "Ctra. Aeropuerto s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.46149,
39.492291
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Onteniente",
"direccion": "Pcta. L'Escura, nº 2"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.609208,
38.821019
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Gandía",
"direccion": "C/ Ciudad de Laval n.º 5"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.192155,
38.96524
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Xátiva",
"direccion": "C/ Ángel n.º 7"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.517347,
38.989245
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Xirivella-Aldaia-Alaquás",
"direccion": "C/ Jaime Roig n.º 4"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.437355,
39.464753
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Torrent",
"direccion": "C/ Constitución n.º 49"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.479089,
39.430248
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Sagunto",
"direccion": "C/ Progreso n.º 14"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.217954,
39.66024
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Castilla y León",
"direccion": "C/ Felipe II, 11"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.725534,
41.655593
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Dependencias Policiales Valladolid-Fray Luis de Granada",
"direccion": "C/ Fray Luis de Granada n.º 5"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.723672,
41.656556
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Valladolid Delicias",
"direccion": "C/ Gerona, s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.724019,
41.630107
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Dependencias Policiales Valladolid-Parquesol",
"direccion": "C/ Enrique Cubero, s/n"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.765072,
41.635091
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Medina del Campo",
"direccion": "C/ Valladolid, 30-32"
},
"geometry": {
"type": "Point",
"coordinates": [
-4.913307,
41.315422
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía del País Vasco",
"direccion": "C/ Gordóniz n.º 8"
},
"geometry": {
"type": "Point",
"coordinates": [
-2.93902,
43.259577
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Provincial de Zamora",
"direccion": "Avda. de Requejo n.º 12"
},
"geometry": {
"type": "Point",
"coordinates": [
-5.735084,
41.511003
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Jefatura Superior de Policía de Aragón",
"direccion": "P.º de María Agustín n.º 34"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.891508,
41.652692
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Brigada Móvil - Intermodal Zaragoza/Delicias",
"direccion": "C/ Rioja n.º 33"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.91009,
41.658774
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría Actur-Rey Fernando",
"direccion": "Avda. Jose Atarés n.º 105"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.89858,
41.674339
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Zaragoza-Centro",
"direccion": "C/ General Mayandía n.º 3"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.892931,
41.651998
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Zaragoza-San José",
"direccion": "P.º de Rosales n.º 24 duplicado"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.878268,
41.640423
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Zaragoza-Arrabal",
"direccion": "C/ Almadieros del Roncal n.º 5"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.873801,
41.662574
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Zaragoza-Delicias",
"direccion": "Avda. de Valencia n.º 50"
},
"geometry": {
"type": "Point",
"coordinates": [
-0.898666,
41.645981
]
}
},
{
"type": "Feature",
"properties": {
"nombre": "Comisaría de Calatayud",
"direccion": "C/ Coral Bilbilitana n.º 8"
},
"geometry": {
"type": "Point",
"coordinates": [
-1.644125,
41.351315
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment