const leafletTileSources = {
'openstreetmap': {
tileUrlFormat: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
tileUrlSubDomains: 'abc',
minZoom: 1,
maxZoom: 19,
defaultZoomLevel: 14,
website: 'https://www.openstreetmap.org',
attribution : '© OpenStreetMap contributors'
},
'openstreetmap-humanitarian': {
tileUrlFormat: 'https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png',
tileUrlSubDomains: 'abc',
minZoom: 1,
maxZoom: 19,
defaultZoomLevel: 14,
website: 'https://www.hotosm.org',
attribution : '© OpenStreetMap contributors, Tiles style by Humanitarian OpenStreetMap Team hosted by OpenStreetMap France'
},
'opentopomap': {
tileUrlFormat: 'https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png',
tileUrlSubDomains: 'abc',
minZoom: 1,
maxZoom: 17,
defaultZoomLevel: 14,
website: 'https://opentopomap.org',
attribution : 'Map data: © OpenStreetMap contributors, SRTM | Map style: © OpenTopoMap (CC-BY-SA)'
},
'opnvkarte': {
tileUrlFormat: 'https://tileserver.memomaps.de/tilegen/{z}/{x}/{y}.png',
tileUrlSubDomains: '',
minZoom: 1,
maxZoom: 17,
defaultZoomLevel: 14,
website: 'https://memomaps.de',
attribution : 'Map memomaps.de CC-BY-SA, map data © OpenStreetMap contributors'
},
'cyclosm': {
tileUrlFormat: 'https://{s}.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png',
tileUrlSubDomains: 'abc',
minZoom: 1,
maxZoom: 19,
defaultZoomLevel: 14,
website: 'https://github.com/cyclosm/cyclosm-cartocss-style',
attribution : 'CyclOSM | Map data: © OpenStreetMap contributors'
},
'cartodb': {
tileUrlFormat: 'https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}.png',
tileUrlSubDomains: 'abcd',
minZoom: 1,
maxZoom: 20,
defaultZoomLevel: 14,
website: 'https://carto.com',
attribution : '© OpenStreetMap, © CARTO'
},
'tomtom': {
tileUrlFormat: 'https://{s}.api.tomtom.com/map/1/tile/basic/main/{z}/{x}/{y}.png',
tileUrlSubDomains: 'abcd',
tileUrlExtraParams: [
{
paramName: 'key',
paramValueType: 'tomtom_key'
},
{
paramName: 'language',
paramValueType: 'language'
}
],
minZoom: 1,
maxZoom: 19,
defaultZoomLevel: 14,
website: 'https://tomtom.com',
attribution : '© 1992 - 2023 TomTom.'
}
}
export default {
leafletTileSources: leafletTileSources
}