93 lines
3.8 KiB
TypeScript
93 lines
3.8 KiB
TypeScript
export const MAP_CONFIG = {
|
|
DEFAULT_PROVIDER: "OpenStreetMapOrg",
|
|
BASEMAPS: [
|
|
{
|
|
name: "OpenStreetMapOrg",
|
|
maxZoom: 19,
|
|
layer: "//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
|
|
subdomains: "abc",
|
|
attribution:
|
|
'© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, Tiles style by <a href="https://www.hotosm.org/" target="_blank">Humanitarian OpenStreetMap Team</a> hosted by <a href="https://openstreetmap.fr/" target="_blank">OpenStreetMap France</a>'
|
|
},
|
|
// {
|
|
// name: "OpenStreetMapFRHot",
|
|
// maxZoom: 19,
|
|
// layer: "//{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png",
|
|
// subdomains: "abc",
|
|
// attribution:
|
|
// '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, Tiles style by <a href="https://www.hotosm.org/" target="_blank">Humanitarian OpenStreetMap Team</a> hosted by <a href="https://openstreetmap.fr/" target="_blank">OpenStreetMap France</a>'
|
|
// },
|
|
// {
|
|
// name: "OpenStreetMapCH",
|
|
// maxZoom: 18,
|
|
// layer: "//tile.osm.ch/switzerland/{z}/{x}/{y}.png",
|
|
// subdomains: "abc",
|
|
// attribution:
|
|
// '© <a href="© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
|
|
// bounds: [[45, 5], [48, 11]]
|
|
// },
|
|
// {
|
|
// name: "OpenStreetMapDE",
|
|
// maxZoom: 18,
|
|
// layer: "//{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png",
|
|
// subdomains: "abc",
|
|
// attribution:
|
|
// '© <a href="© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
|
// },
|
|
// {
|
|
// name: "OpenStreetMapBZH",
|
|
// maxZoom: 18,
|
|
// layer: "//tile.openstreetmap.bzh/br/{z}/{x}/{y}.png",
|
|
// subdomains: "",
|
|
// attribution:
|
|
// '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, Tiles courtesy of <a href="http://www.openstreetmap.bzh/" target="_blank">Breton OpenStreetMap Team</a>',
|
|
// bounds: [[46.2, -5.5], [50, 0.7]]
|
|
// },
|
|
{
|
|
name: "OpenTopoMap",
|
|
maxZoom: 17,
|
|
layer: "//{s}.opentopomap.org/{z}/{x}/{y}.png",
|
|
subdomains: "abc",
|
|
attribution: "© OpenTopoMap"
|
|
},
|
|
{
|
|
name: "IGN Vue satellite",
|
|
maxZoom: 17,
|
|
layer: "https://wxs.ign.fr/{apiKey}/geoportail/wmts?&REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE=normal&TILEMATRIXSET=PM&FORMAT=image/jpeg&LAYER={layerName}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}",
|
|
layerName: "ORTHOIMAGERY.ORTHOPHOTOS",
|
|
// Remplacer "pratique" par votre clé IGN
|
|
apiKey: 'pratique',
|
|
subdomains: "abc",
|
|
attribution: "© IGN-F/Geoportail"
|
|
},
|
|
{
|
|
name: "IGN Cartes HELLO C EST UNE MODIF",
|
|
maxZoom: 17,
|
|
layer: "https://wxs.ign.fr/{apiKey}/geoportail/wmts?&REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE=normal&TILEMATRIXSET=PM&FORMAT=image/jpeg&LAYER={layerName}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}",
|
|
layerName: "GEOGRAPHICALGRIDSYSTEMS.MAPS",
|
|
// Remplacer "pratique" par votre clé IGN
|
|
apiKey: 'pratique',
|
|
subdomains: "abc",
|
|
attribution: "© IGN-F/Geoportail"
|
|
},
|
|
// {
|
|
// // ⚠ google's terms&conditions
|
|
// // https://github.com/Leaflet/Leaflet/blob/master/FAQ.md#i-want-to-use-google-maps-api-tiles-with-leaflet-can-i-do-that
|
|
// name: "GoogleSatellite",
|
|
// maxZoom: 20,
|
|
// layer: "//mt{s}.google.com/vt/lyrs=s&x={x}&y={y}&z={z}",
|
|
// subdomains: "1",
|
|
// attribution: "© GoogleMap"
|
|
// }
|
|
],
|
|
CENTER: [46.52863469527167, 2.43896484375],
|
|
ZOOM_LEVEL: 6,
|
|
ZOOM_LEVEL_RELEVE: 15,
|
|
NEW_OBS_POINTER: "assets/pointer-blue2.png",
|
|
OBS_POINTER: "assets/pointer-green.png",
|
|
LOCATE_CONTROL_TITLE: {
|
|
'fr':'Me localiser',
|
|
'en':'Show me where i am'
|
|
}
|
|
}
|