Release: Version 1.0.0 von main branch soll mergen

This commit is contained in:
ISA
2024-07-19 11:02:09 +02:00
parent befc27c60d
commit 8824af2096
5 changed files with 54 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
// Custom circle icon for draggable markers
// Viereck als End-Icon für die Route
import L from "leaflet";
const endIcon = L.divIcon({
className: "custom-end-icon",

View File

@@ -867,6 +867,8 @@ const MapComponent = ({ locations, onLocationUpdate, lineCoordinates }) => {
L.tileLayer(online ? onlineTileLayer : offlineTileLayer, {
attribution:
'&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
//tileSize: 250, // oder 512, je nach Kachelgröße
//detectRetina: true,
}).addTo(initMap);
const overlappingMarkerSpiderfier =

View File

@@ -10,7 +10,7 @@ const startIcon = L.divIcon({
</svg>
`, // Schwarzes Dreieck innerhalb eines grauen Dreiecks
iconSize: [18, 18],
iconAnchor: [9, 18],
iconAnchor: [9, 10],
});
export default startIcon;