diff --git a/.env.local b/.env.local index cb14642ed..47b80a1b6 100644 --- a/.env.local +++ b/.env.local @@ -1,7 +1,8 @@ - -DB_HOST=localhost +#je nach dem Mysql Server, ob localhost freigegeben ist oder die IP Adresse des Servers, manchmal die beide und manchmal nur eine +DB_HOST=localhost #HTTP error! status: 500 wenn auf dem Server ist #DB_HOST=192.168.10.58 #DB_HOST=10.10.0.13 +#DB_HOST=10.10.0.70 # auf localhost blockiert DB_USER=root DB_PASSWORD="root#$" DB_NAME=talas_v5 diff --git a/MapTypC.aspx.txt b/MapTypC.aspx.txt new file mode 100644 index 000000000..2fe1ad5a2 --- /dev/null +++ b/MapTypC.aspx.txt @@ -0,0 +1,47 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/Standard.Master" AutoEventWireup="true" CodeBehind="MapTypC.aspx.cs" Inherits="TALAS_V5.MessagesMap.MapTypC" %> +<%@ Register assembly="DevExpress.Web.v19.2, Version=19.2.6.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" namespace="DevExpress.Web" tagprefix="dx" %> + + + + + + + + + +
+ +
+ + + +
\ No newline at end of file diff --git a/components/EndIcon.js b/components/EndIcon.js index 25d272e95..c6d56a8bc 100644 --- a/components/EndIcon.js +++ b/components/EndIcon.js @@ -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", diff --git a/components/MapComponent.js b/components/MapComponent.js index 31c6ebd59..4b88cfd0f 100644 --- a/components/MapComponent.js +++ b/components/MapComponent.js @@ -867,6 +867,8 @@ const MapComponent = ({ locations, onLocationUpdate, lineCoordinates }) => { L.tileLayer(online ? onlineTileLayer : offlineTileLayer, { attribution: '© OpenStreetMap contributors', + //tileSize: 250, // oder 512, je nach Kachelgröße + //detectRetina: true, }).addTo(initMap); const overlappingMarkerSpiderfier = diff --git a/components/StartIcon.js b/components/StartIcon.js index 552541ebf..dc54c0f30 100644 --- a/components/StartIcon.js +++ b/components/StartIcon.js @@ -10,7 +10,7 @@ const startIcon = L.divIcon({ `, // Schwarzes Dreieck innerhalb eines grauen Dreiecks iconSize: [18, 18], - iconAnchor: [9, 18], + iconAnchor: [9, 10], }); export default startIcon;