import { type AnySourceData, type Style } from 'mapbox-gl'; export const basemaps: { [key: string]: string | Style; } = { mapboxOutdoors: 'mapbox://styles/mapbox/outdoors-v12', mapboxSatellite: 'mapbox://styles/mapbox/satellite-v9', openStreetMap: { version: 8, sources: { openStreetMap: { type: 'raster', tiles: ['https://a.tile.openstreetmap.org/{z}/{x}/{y}.png', 'https://b.tile.openstreetmap.org/{z}/{x}/{y}.png', 'https://c.tile.openstreetmap.org/{z}/{x}/{y}.png'], tileSize: 256, maxzoom: 18, attribution: 'Map tiles by OpenStreetMap tile servers, under the tile usage policy. Data by OpenStreetMap' } }, layers: [{ id: 'openStreetMap', type: 'raster', source: 'openStreetMap', }], }, openTopoMap: { version: 8, sources: { openTopoMap: { type: 'raster', tiles: ['https://tile.opentopomap.org/{z}/{x}/{y}.png'], tileSize: 256, maxzoom: 17, attribution: '© OpenTopoMap © OpenStreetMap' } }, layers: [{ id: 'openTopoMap', type: 'raster', source: 'openTopoMap', }], }, openHikingMap: { version: 8, sources: { openHikingMap: { type: 'raster', tiles: ['https://maps.refuges.info/hiking/{z}/{x}/{y}.png'], tileSize: 256, maxzoom: 18, attribution: '© sly © OpenStreetMap' } }, layers: [{ id: 'openHikingMap', type: 'raster', source: 'openHikingMap', }], }, cyclOSM: { version: 8, sources: { cyclOSM: { type: 'raster', tiles: ['https://a.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png', 'https://b.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png', 'https://c.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png'], tileSize: 256, maxzoom: 17, attribution: '© CyclOSM © OpenStreetMap' } }, layers: [{ id: 'cyclOSM', type: 'raster', source: 'cyclOSM', }], }, linz: 'https://basemaps.linz.govt.nz/v1/tiles/topographic/EPSG:3857/style/topographic.json?api=d01fbtg0ar23gctac5m0jgyy2ds' }; export const overlays: { [key: string]: AnySourceData; } = { cyclOSMlite: { type: 'raster', tiles: ['https://a.tile-cyclosm.openstreetmap.fr/cyclosm-lite/{z}/{x}/{y}.png', 'https://b.tile-cyclosm.openstreetmap.fr/cyclosm-lite/{z}/{x}/{y}.png', 'https://c.tile-cyclosm.openstreetmap.fr/cyclosm-lite/{z}/{x}/{y}.png'], tileSize: 256, maxzoom: 17, attribution: '© CyclOSM © OpenStreetMap' }, };