UNPKG

@panoramax/web-viewer

Version:

Panoramax web viewer for geolocated pictures

16 lines (15 loc) 542 B
var servers = { meta: "https://explore.panoramax.fr/api", ign: "https://panoramax.ign.fr/api", osmfr: "https://panoramax.openstreetmap.fr/api", local: "http://localhost:5000/api", dev: "https://dev.panoramax.xyz/api", cartocite: "https://panoramax.cartocite.fr/api", }; var urlParams = new URLSearchParams(window.location.search); // eslint-disable-next-line no-unused-vars var server = servers[urlParams.get("server") || "meta"]; if(!server) { console.error("Unrecognized server: "+urlParams.get("server")); server = servers.meta; }