2024-07-21 09:13:16 -04:00
|
|
|
|
2024-07-31 13:35:35 -04:00
|
|
|
export function osmMapLayer(map) {
|
2024-07-21 09:13:16 -04:00
|
|
|
return L.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png", {
|
|
|
|
|
maxZoom: 19,
|
2024-07-31 13:35:35 -04:00
|
|
|
attribution: "© <a href='http://www.openstreetmap.org/copyright'>OpenStreetMap</a>",
|
|
|
|
|
}).addTo(map);
|
2024-07-21 09:13:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function osmHotMapLayer() {
|
|
|
|
|
return L.tileLayer("https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png", {
|
|
|
|
|
maxZoom: 19,
|
|
|
|
|
attribution: "© OpenStreetMap contributors, Tiles style by Humanitarian OpenStreetMap Team hosted by OpenStreetMap France",
|
|
|
|
|
});
|
|
|
|
|
}
|