chore: change icons order
This commit is contained in:
@@ -23,4 +23,4 @@ NEXT_PUBLIC_USE_MOCKS=true
|
|||||||
# z.B. http://10.10.0.13/xyz/index.aspx -> basePath in config.json auf /xyz setzen
|
# z.B. http://10.10.0.13/xyz/index.aspx -> basePath in config.json auf /xyz setzen
|
||||||
# basePath wird jetzt in public/config.json gepflegt
|
# basePath wird jetzt in public/config.json gepflegt
|
||||||
# App-Versionsnummer
|
# App-Versionsnummer
|
||||||
NEXT_PUBLIC_APP_VERSION=1.1.362
|
NEXT_PUBLIC_APP_VERSION=1.1.363
|
||||||
|
|||||||
@@ -24,4 +24,4 @@ NEXT_PUBLIC_USE_MOCKS=false
|
|||||||
# basePath wird jetzt in public/config.json gepflegt
|
# basePath wird jetzt in public/config.json gepflegt
|
||||||
|
|
||||||
# App-Versionsnummer
|
# App-Versionsnummer
|
||||||
NEXT_PUBLIC_APP_VERSION=1.1.362
|
NEXT_PUBLIC_APP_VERSION=1.1.363
|
||||||
|
|||||||
@@ -1129,6 +1129,37 @@ const MapComponent = ({ locations, onLocationUpdate, lineCoordinates }) => {
|
|||||||
<div id="map" ref={mapRef} className="z-0" style={{ height: "100vh", width: "100vw" }}></div>
|
<div id="map" ref={mapRef} className="z-0" style={{ height: "100vh", width: "100vw" }}></div>
|
||||||
{/* Top-right controls: layers, info, expand, edit, and base map stack */}
|
{/* Top-right controls: layers, info, expand, edit, and base map stack */}
|
||||||
<div className="absolute top-3 right-3 z-50 pointer-events-auto flex items-center gap-2">
|
<div className="absolute top-3 right-3 z-50 pointer-events-auto flex items-center gap-2">
|
||||||
|
{/* Alarm-Icon (mdi) */}
|
||||||
|
<button
|
||||||
|
onClick={() => {}}
|
||||||
|
aria-label="Alarm"
|
||||||
|
className="rounded-full bg-white/90 hover:bg-white shadow p-1"
|
||||||
|
title="Alarm"
|
||||||
|
>
|
||||||
|
<Icon icon="mdi:alarm-light-outline" className="h-8 w-8 text-blue-900" />
|
||||||
|
</button>
|
||||||
|
{/* Marker-Icon (line-md) */}
|
||||||
|
<button
|
||||||
|
onClick={() => {}}
|
||||||
|
aria-label="Marker"
|
||||||
|
className="rounded-full bg-white/90 hover:bg-white shadow p-1"
|
||||||
|
title="Marker"
|
||||||
|
>
|
||||||
|
<Icon icon="line-md:map-marker-filled" className="h-8 w-8 text-blue-900" />
|
||||||
|
</button>
|
||||||
|
{/*Lupe: Koordinatensuche ein-/ausblenden */}
|
||||||
|
<button
|
||||||
|
onClick={() => setShowCoordinateInput(v => !v)}
|
||||||
|
aria-label={
|
||||||
|
showCoordinateInput ? "Koordinatensuche ausblenden" : "Koordinatensuche einblenden"
|
||||||
|
}
|
||||||
|
className="rounded-full bg-white/90 hover:bg-white shadow p-1"
|
||||||
|
title={
|
||||||
|
showCoordinateInput ? "Koordinatensuche ausblenden" : "Koordinatensuche einblenden"
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<Icon icon="material-symbols:search-rounded" className="h-8 w-8 text-blue-900" />
|
||||||
|
</button>
|
||||||
<button
|
<button
|
||||||
onClick={toggleEditMode}
|
onClick={toggleEditMode}
|
||||||
aria-label={editMode ? "Bearbeitungsmodus deaktivieren" : "Bearbeitungsmodus aktivieren"}
|
aria-label={editMode ? "Bearbeitungsmodus deaktivieren" : "Bearbeitungsmodus aktivieren"}
|
||||||
@@ -1168,36 +1199,7 @@ const MapComponent = ({ locations, onLocationUpdate, lineCoordinates }) => {
|
|||||||
>
|
>
|
||||||
<Icon icon="material-symbols:menu-rounded" className="h-8 w-8 text-blue-900" />
|
<Icon icon="material-symbols:menu-rounded" className="h-8 w-8 text-blue-900" />
|
||||||
</button>
|
</button>
|
||||||
<button
|
|
||||||
onClick={() => setShowCoordinateInput(v => !v)}
|
|
||||||
aria-label={
|
|
||||||
showCoordinateInput ? "Koordinatensuche ausblenden" : "Koordinatensuche einblenden"
|
|
||||||
}
|
|
||||||
className="rounded-full bg-white/90 hover:bg-white shadow p-1"
|
|
||||||
title={
|
|
||||||
showCoordinateInput ? "Koordinatensuche ausblenden" : "Koordinatensuche einblenden"
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<Icon icon="material-symbols:search-rounded" className="h-8 w-8 text-blue-900" />
|
|
||||||
</button>
|
|
||||||
{/* Marker-Icon (line-md) */}
|
|
||||||
<button
|
|
||||||
onClick={() => {}}
|
|
||||||
aria-label="Marker"
|
|
||||||
className="rounded-full bg-white/90 hover:bg-white shadow p-1"
|
|
||||||
title="Marker"
|
|
||||||
>
|
|
||||||
<Icon icon="line-md:map-marker-filled" className="h-8 w-8 text-blue-900" />
|
|
||||||
</button>
|
|
||||||
{/* Alarm-Icon (mdi) */}
|
|
||||||
<button
|
|
||||||
onClick={() => {}}
|
|
||||||
aria-label="Alarm"
|
|
||||||
className="rounded-full bg-white/90 hover:bg-white shadow p-1"
|
|
||||||
title="Alarm"
|
|
||||||
>
|
|
||||||
<Icon icon="mdi:alarm-light-outline" className="h-8 w-8 text-blue-900" />
|
|
||||||
</button>
|
|
||||||
<button
|
<button
|
||||||
onClick={() => setShowAppInfoCard(v => !v)}
|
onClick={() => setShowAppInfoCard(v => !v)}
|
||||||
aria-label={showAppInfoCard ? "Info ausblenden" : "Info einblenden"}
|
aria-label={showAppInfoCard ? "Info ausblenden" : "Info einblenden"}
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "nodemap",
|
"name": "nodemap",
|
||||||
"version": "1.1.362",
|
"version": "1.1.363",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "nodemap",
|
"name": "nodemap",
|
||||||
"version": "1.1.362",
|
"version": "1.1.363",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/react": "^11.13.3",
|
"@emotion/react": "^11.13.3",
|
||||||
"@emotion/styled": "^11.13.0",
|
"@emotion/styled": "^11.13.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nodemap",
|
"name": "nodemap",
|
||||||
"version": "1.1.362",
|
"version": "1.1.363",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/react": "^11.13.3",
|
"@emotion/react": "^11.13.3",
|
||||||
"@emotion/styled": "^11.13.0",
|
"@emotion/styled": "^11.13.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user