At Mapbox Studio: https://www.mapbox.com/mapbox-studio today (9th sept '22). use https://wayback.archive.org/ if needed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" /> | |
<title>OL: Filter feature layer</title> | |
<style> | |
html, | |
body, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import express from 'express'; | |
const app = express() | |
const port = 3000 | |
app.get('/', async (req, res) => { | |
res.redirect('https://www.arcgis.com/sharing/rest/oauth2/authorize/?client_id=XXXXX&redirect_uri=https://hhkaos.github.io/arcgis-oauth-callback/&response_type=code&code_challenge=qaXuju2sX8lKLvErIKHfdrg0h7DLvSeLuErfsfMJFj4&code_challenge_method=S256') | |
}) | |
app.listen(port, () => { | |
console.log(`Example app listening on port ${port}`) |
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gis_x;gis_y;fecha_alta;fecha_baja;distrito;barrio;calle;num_finca;matricula | |
439608,1908;4473550,028;2014/05/28;;01 CENTRO;01-01 PALACIO;AGUAS, CALLE, DE LAS;1;301110056 | |
439757,571;4473794,518;2014/05/27;;01 CENTRO;01-01 PALACIO;ALMENDRO, CALLE, DEL;14;301110042 | |
439724,4731;4474317,372;2014/05/26;;01 CENTRO;01-01 PALACIO;AMNISTIA, CALLE, DE LA;6;301110014 | |
439923,6811;4474528,889;2014/05/26;;01 CENTRO;01-01 PALACIO;ANGELES, COSTANILLA, DE LOS;11;301110012 | |
439735,2317;4474489,959;2014/05/26;;01 CENTRO;01-01 PALACIO;ARRIETA, CALLE, DE;8;301110010 | |
439232,9842;4473818,072;2014/05/27;;01 CENTRO;01-01 PALACIO;BEATRIZ GALINDO, CALLE, DE;S/N;301110032 | |
439622,7569;4473423,031;2014/05/28;;01 CENTRO;01-01 PALACIO;CALATRAVA, CALLE, DE;17;301110064 | |
439549,6164;4473438,836;2014/05/28;;01 CENTRO;01-01 PALACIO;CALATRAVA, CALLE, DE;29;301110063 | |
439479,2652;4473481,502;2014/05/28;;01 CENTRO;01-01 PALACIO;CALATRAVA, CALLE, DE;37;301110046 |
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(",");
Last update: 26th July 2023
Go to: https://www.ogc.org/resource/products/compliant?display_opt=1
And run this code in the console:
function compare(a,b) {
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width" /> | |
<title>ArcGIS REST JS</title> | |
<style> | |
body { | |
font-family: monospace; | |
color: white; |