1230 lines
36 KiB
Svelte
1230 lines
36 KiB
Svelte
<script lang="ts">
|
|
import { page } from "$app/state";
|
|
import directionCaret from "$lib/assets/svgs/caret-right-solid.svg";
|
|
import type { Settings } from "$lib/models/settings";
|
|
import type { Trail } from "$lib/models/trail";
|
|
import type { Waypoint } from "$lib/models/waypoint";
|
|
import { theme } from "$lib/stores/theme_store";
|
|
import { fetchGPX } from "$lib/stores/trail_store";
|
|
import { findStartAndEndPoints } from "$lib/util/geojson_util";
|
|
import { toGeoJson } from "$lib/util/gpx_util";
|
|
import {
|
|
baseMapStyles,
|
|
createMarkerFromWaypoint,
|
|
createPopupFromTrail,
|
|
FontawesomeMarker,
|
|
overlayLayers,
|
|
} from "$lib/util/maplibre_util";
|
|
import type { ElevationProfileControl } from "$lib/vendor/maplibre-elevation-profile/elevationprofile-control";
|
|
import { FullscreenControl } from "$lib/vendor/maplibre-fullscreen/fullscreen-control";
|
|
import MaplibreGraticule from "$lib/vendor/maplibre-graticule/maplibre-graticule";
|
|
import {
|
|
StyleSwitcherControl,
|
|
type StyleSwitcherControlOptions,
|
|
} from "$lib/vendor/maplibre-style-switcher/style-switcher-control";
|
|
import type { Feature, FeatureCollection, GeoJSON } from "geojson";
|
|
import * as M from "maplibre-gl";
|
|
import "maplibre-gl/dist/maplibre-gl.css";
|
|
import { onDestroy, onMount, untrack } from "svelte";
|
|
import type { RadioItem } from "../base/radio_group.svelte";
|
|
|
|
interface Props {
|
|
trails?: Trail[];
|
|
waypoints?: Waypoint[];
|
|
markers?: M.Marker[];
|
|
map?: M.Map | null;
|
|
drawing?: boolean;
|
|
showElevation?: boolean;
|
|
showInfoPopup?: boolean;
|
|
showGrid?: boolean;
|
|
showStyleSwitcher?: boolean;
|
|
showFullscreen?: boolean;
|
|
showTerrain?: boolean;
|
|
fitBounds?: "animate" | "instant" | "off";
|
|
onmarkerdragend?:
|
|
| ((marker: M.Marker, wpId?: string) => void)
|
|
| undefined;
|
|
elevationProfileContainer?: string | HTMLDivElement | undefined;
|
|
mapOptions?: Partial<M.MapOptions> | undefined;
|
|
activeTrail?: number | null;
|
|
clusterTrails?: boolean;
|
|
onsegmentdragend?: (data: {
|
|
segment: number;
|
|
event: M.MapMouseEvent;
|
|
}) => void;
|
|
onselect?: (trail: Trail) => void;
|
|
onunselect?: (trail: Trail) => void;
|
|
onfullscreen?: () => void;
|
|
onmoveend?: (map: M.Map) => void;
|
|
onzoom?: (map: M.Map) => void;
|
|
onclick?: (event: M.MapMouseEvent & Object) => void;
|
|
onUnclusteredClick?: (
|
|
event: M.MapMouseEvent & Object,
|
|
trail: Trail,
|
|
) => void;
|
|
oninit?: (map: M.Map) => void;
|
|
}
|
|
|
|
let {
|
|
trails = [],
|
|
waypoints = [],
|
|
markers = $bindable([]),
|
|
map = $bindable(),
|
|
drawing = false,
|
|
showElevation = true,
|
|
showInfoPopup = false,
|
|
showGrid = false,
|
|
showStyleSwitcher = true,
|
|
showFullscreen = false,
|
|
showTerrain = false,
|
|
fitBounds = "instant",
|
|
elevationProfileContainer = undefined,
|
|
mapOptions = undefined,
|
|
activeTrail = $bindable(0),
|
|
clusterTrails = false,
|
|
onmarkerdragend,
|
|
onsegmentdragend,
|
|
onselect,
|
|
onunselect,
|
|
onfullscreen,
|
|
onmoveend,
|
|
onzoom,
|
|
onclick,
|
|
onUnclusteredClick,
|
|
oninit,
|
|
}: Props = $props();
|
|
|
|
let mapContainer: HTMLDivElement;
|
|
let epc: ElevationProfileControl;
|
|
let graticule: MaplibreGraticule;
|
|
|
|
let mapState: StyleSwitcherControlOptions["state"];
|
|
|
|
let layers: Record<
|
|
string,
|
|
{
|
|
startMarker: M.Marker | null;
|
|
endMarker: M.Marker | null;
|
|
source: M.GeoJSONSource | null;
|
|
layer: M.LineLayerSpecification | null;
|
|
highlighted: boolean;
|
|
listener: {
|
|
onEnter: ((e: M.MapMouseEvent) => void) | null;
|
|
onLeave: ((e: M.MapMouseEvent) => void) | null;
|
|
onMouseUp: ((e: M.MapMouseEvent) => void) | null;
|
|
onMouseDown: ((e: M.MapMouseEvent) => void) | null;
|
|
onMouseMove: ((e: M.MapMouseEvent) => void) | null;
|
|
};
|
|
}
|
|
> = {};
|
|
|
|
let elevationMarker: FontawesomeMarker;
|
|
|
|
let draggingSegment: number | null = null;
|
|
|
|
let hoveringTrail: boolean = false;
|
|
|
|
const trailColors = [
|
|
"#3549BB",
|
|
"#592E9E",
|
|
"#47A2CD",
|
|
"#62D5BC",
|
|
"#7DDE95",
|
|
"#759E2E",
|
|
"#BBA535",
|
|
"#CD6F47",
|
|
"#D5627B",
|
|
"#DE7DC5",
|
|
];
|
|
|
|
let clusterPopup: M.Popup | null = null;
|
|
|
|
let [data, clusterData] = $derived(getData(trails));
|
|
$effect(() => {
|
|
if (data && map) {
|
|
untrack(() => initMap(map?.loaded() ?? false));
|
|
}
|
|
});
|
|
$effect(() => {
|
|
adjustTrailFocus(activeTrail);
|
|
});
|
|
$effect(() => {
|
|
toggleEpcTheme();
|
|
});
|
|
$effect(() => {
|
|
if (drawing && map) {
|
|
startDrawing();
|
|
} else if (!drawing && map) {
|
|
stopDrawing();
|
|
}
|
|
});
|
|
$effect(() => {
|
|
if (showGrid) {
|
|
if (!graticule) {
|
|
graticule = new MaplibreGraticule({
|
|
minZoom: 0,
|
|
maxZoom: 20,
|
|
showLabels: true,
|
|
labelType: "hdms",
|
|
labelSize: 10,
|
|
labelColor: "#858585",
|
|
longitudePosition: "top",
|
|
latitudePosition: "right",
|
|
paint: {
|
|
"line-opacity": 0.8,
|
|
"line-color": "rgba(0,0,0,0.2)",
|
|
},
|
|
});
|
|
}
|
|
map?.addControl(graticule);
|
|
} else {
|
|
if (graticule) {
|
|
map?.removeControl(graticule);
|
|
}
|
|
}
|
|
});
|
|
$effect(() => {
|
|
waypoints;
|
|
untrack(() => {
|
|
showWaypoints();
|
|
refreshElevationProfile();
|
|
});
|
|
});
|
|
|
|
function getData(trails: Trail[]): [GeoJSON[], FeatureCollection] {
|
|
let cD: FeatureCollection = { type: "FeatureCollection", features: [] };
|
|
let r: GeoJSON[] = [];
|
|
|
|
trails.forEach((t) => {
|
|
if (t.expand?.gpx_data) {
|
|
r.push(toGeoJson(t.expand.gpx_data) as GeoJSON);
|
|
}
|
|
if (clusterTrails && t.lat !== null && t.lon !== null) {
|
|
cD.features.push({
|
|
id: t.id,
|
|
type: "Feature",
|
|
properties: {
|
|
trail: t.id,
|
|
},
|
|
geometry: {
|
|
type: "Point",
|
|
coordinates: [t.lon ?? 0, t.lat ?? 0],
|
|
},
|
|
} as Feature);
|
|
}
|
|
});
|
|
|
|
return [r, cD];
|
|
}
|
|
|
|
function initMap(mapLoaded: boolean) {
|
|
if (!map) {
|
|
return;
|
|
}
|
|
|
|
refreshElevationProfile();
|
|
if (showElevation && data.length && activeTrail !== null) {
|
|
epc?.showProfile();
|
|
} else {
|
|
epc?.hideProfile();
|
|
}
|
|
|
|
trails.forEach((t, i) => {
|
|
const layerId = t.id!;
|
|
addTrailLayer(t, layerId, i, data[i]);
|
|
});
|
|
if (clusterTrails) {
|
|
addClusterLayer(clusterData);
|
|
}
|
|
|
|
Object.keys(layers).forEach((layerId) => {
|
|
const isStillVisible = trails.some((t) => t.id === layerId);
|
|
if (!isStillVisible) {
|
|
removeCaretLayer();
|
|
removeTrailLayer(layerId);
|
|
}
|
|
});
|
|
|
|
if (mapLoaded) {
|
|
for (const [k, v] of Object.entries(mapState.selectedLayers)) {
|
|
if (v) {
|
|
const layer = overlayLayers.find((l) => l.text === k);
|
|
if (!layer) continue;
|
|
addOverlayLayer(layer);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (
|
|
!drawing &&
|
|
fitBounds !== "off" &&
|
|
data.some((d) => d.bbox !== undefined)
|
|
) {
|
|
if (activeTrail !== null && trails[activeTrail] && mapLoaded) {
|
|
focusTrail(trails[activeTrail]);
|
|
} else {
|
|
flyToBounds();
|
|
}
|
|
} else if (drawing && activeTrail !== null && mapLoaded) {
|
|
addCaretLayer(trails[activeTrail]?.id);
|
|
}
|
|
}
|
|
|
|
export function refreshElevationProfile() {
|
|
if (activeTrail !== null && data[activeTrail]) {
|
|
epc?.setData(data[activeTrail]!, waypoints);
|
|
}
|
|
}
|
|
|
|
function getBounds() {
|
|
let minX = Infinity,
|
|
minY = Infinity,
|
|
maxX = -Infinity,
|
|
maxY = -Infinity;
|
|
|
|
for (const [xMin, yMin, xMax, yMax] of data
|
|
.filter((d) => d.bbox !== undefined)
|
|
.map((d) => d.bbox!)) {
|
|
minX = Math.min(minX, xMin);
|
|
minY = Math.min(minY, yMin);
|
|
maxX = Math.max(maxX, xMax);
|
|
maxY = Math.max(maxY, yMax);
|
|
}
|
|
|
|
if (
|
|
minX < Infinity &&
|
|
minY < Infinity &&
|
|
maxX > -Infinity &&
|
|
maxY > -Infinity
|
|
) {
|
|
return new M.LngLatBounds([minX, minY, maxX, maxY]);
|
|
} else {
|
|
return new M.LngLatBounds([0, 0, 0, 0]);
|
|
}
|
|
}
|
|
|
|
function flyToBounds() {
|
|
const bounds =
|
|
activeTrail !== null && data[activeTrail]
|
|
? (data[activeTrail].bbox as M.LngLatBoundsLike)
|
|
: getBounds();
|
|
|
|
if (!bounds || !map) {
|
|
return;
|
|
}
|
|
|
|
map!.fitBounds(bounds, {
|
|
animate: fitBounds == "animate",
|
|
padding: {
|
|
top: 16,
|
|
left: 16,
|
|
right: 16,
|
|
bottom:
|
|
16 +
|
|
(epc?.isProfileShown && !elevationProfileContainer
|
|
? map!.getContainer().clientHeight * 0.3
|
|
: 0),
|
|
},
|
|
});
|
|
}
|
|
|
|
function removeTrailLayer(id: string) {
|
|
if (!layers[id]) {
|
|
return;
|
|
}
|
|
const layer = layers[id];
|
|
|
|
if (layer.layer) {
|
|
map?.removeLayer(id);
|
|
}
|
|
if (layer.source) {
|
|
map?.removeSource(id);
|
|
}
|
|
layer.startMarker?.remove();
|
|
layer.endMarker?.remove();
|
|
|
|
map?.off("mouseenter", id, layers[id].listener.onEnter!);
|
|
map?.off("mouseleave", id, layers[id].listener.onLeave!);
|
|
map?.off("mouseup", id, layers[id].listener.onMouseUp!);
|
|
map?.off("mousemove", id, layers[id].listener.onMouseMove!);
|
|
map?.off("mousedown", id, layers[id].listener.onMouseDown!);
|
|
|
|
delete layers[id];
|
|
}
|
|
|
|
function createEmptyLayer(id: string) {
|
|
if (!layers[id]) {
|
|
layers[id] = {
|
|
startMarker: null,
|
|
endMarker: null,
|
|
source: null,
|
|
layer: null,
|
|
highlighted: false,
|
|
listener: {
|
|
onMouseUp: null,
|
|
onMouseDown: null,
|
|
onEnter: null,
|
|
onLeave: null,
|
|
onMouseMove: null,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
function addTrailLayer(
|
|
trail: Trail,
|
|
id: string,
|
|
index: number,
|
|
geojson: GeoJSON | null | undefined,
|
|
) {
|
|
if (!geojson || !map) {
|
|
return;
|
|
}
|
|
|
|
createEmptyLayer(id);
|
|
|
|
if (!layers[id].source || !map.getSource(id)) {
|
|
try {
|
|
map.addSource(id, {
|
|
type: "geojson",
|
|
data: geojson,
|
|
});
|
|
layers[id].source = map.getSource(id) as M.GeoJSONSource;
|
|
} catch (e) {
|
|
return;
|
|
}
|
|
} else {
|
|
layers[id].source.setData(geojson);
|
|
}
|
|
|
|
if (!layers[id].layer || !map.getLayer(id)) {
|
|
map.addLayer({
|
|
id: id,
|
|
type: "line",
|
|
source: id,
|
|
paint: {
|
|
"line-color": trailColors[index % trailColors.length],
|
|
"line-width": 5,
|
|
},
|
|
});
|
|
layers[id].layer = map.getLayer(id) as M.LineLayerSpecification;
|
|
layers[id].listener.onEnter = (e) =>
|
|
highlightTrail(id, trails[activeTrail ?? -1]?.id == id);
|
|
layers[id].listener.onLeave = (e) => unHighlightTrail(id);
|
|
layers[id].listener.onMouseUp = (e) => {
|
|
activeTrail = trails.findIndex((t) => t.id == trail.id);
|
|
};
|
|
layers[id].listener.onMouseMove = moveCrosshairToCursorPosition;
|
|
layers[id].listener.onMouseDown = (e) => handDragStart(e, id);
|
|
|
|
map.on("mouseenter", id, layers[id].listener.onEnter);
|
|
map.on("mouseleave", id, layers[id].listener.onLeave);
|
|
map.on("mouseup", id, layers[id].listener.onMouseUp);
|
|
map.on("mousemove", id, layers[id].listener.onMouseMove);
|
|
map.on("mousedown", id, layers[id].listener.onMouseDown);
|
|
}
|
|
|
|
if (!drawing && !clusterTrails) {
|
|
addStartEndMarkers(trail, id, geojson);
|
|
}
|
|
}
|
|
|
|
function addClusterLayer(geojson: FeatureCollection) {
|
|
if (!geojson || !map || !map.style) {
|
|
return;
|
|
}
|
|
if (!map.getSource("trails")) {
|
|
map.addSource("trails", {
|
|
type: "geojson",
|
|
data: geojson,
|
|
cluster: true,
|
|
clusterRadius: 50,
|
|
});
|
|
} else {
|
|
(map.getSource("trails") as M.GeoJSONSource).setData(geojson);
|
|
}
|
|
if (!map.getLayer("clusters")) {
|
|
map.addLayer({
|
|
id: "clusters",
|
|
type: "circle",
|
|
source: "trails",
|
|
filter: ["has", "point_count"],
|
|
paint: {
|
|
"circle-color": "#242734",
|
|
"circle-radius": [
|
|
"step",
|
|
["get", "point_count"],
|
|
10,
|
|
10,
|
|
15,
|
|
20,
|
|
20,
|
|
50,
|
|
25,
|
|
100,
|
|
30,
|
|
200,
|
|
35,
|
|
],
|
|
"circle-stroke-width": 3,
|
|
"circle-stroke-color": "#fff",
|
|
},
|
|
});
|
|
map.addLayer({
|
|
id: "cluster-count",
|
|
type: "symbol",
|
|
source: "trails",
|
|
filter: ["has", "point_count"],
|
|
paint: {
|
|
"text-color": "#fff",
|
|
},
|
|
layout: {
|
|
"text-field": "{point_count_abbreviated}",
|
|
"text-font": ["Noto Sans Regular"],
|
|
"text-size": 12,
|
|
},
|
|
});
|
|
map.addLayer({
|
|
id: "unclustered-point",
|
|
type: "circle",
|
|
source: "trails",
|
|
filter: ["!", ["has", "point_count"]],
|
|
paint: {
|
|
"circle-color": "#242734",
|
|
"circle-radius": 7,
|
|
"circle-stroke-width": 2,
|
|
"circle-stroke-color": "#fff",
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
function addClusterHighlightLayer(geojson: GeoJSON) {
|
|
if (!geojson || !map || !map.style) {
|
|
return;
|
|
}
|
|
if (!map.getSource("cluster-highlight")) {
|
|
map.addSource("cluster-highlight", {
|
|
type: "geojson",
|
|
data: geojson,
|
|
});
|
|
} else {
|
|
(map.getSource("cluster-highlight") as M.GeoJSONSource).setData(
|
|
geojson,
|
|
);
|
|
}
|
|
|
|
if (!map.getLayer("cluster-highlight")) {
|
|
map.addLayer({
|
|
id: "cluster-highlight",
|
|
type: "line",
|
|
source: "cluster-highlight",
|
|
paint: {
|
|
"line-color": trailColors[0],
|
|
"line-width": 5,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
function moveCrosshairToCursorPosition(e: M.MapMouseEvent) {
|
|
epc?.moveCrosshair(e.lngLat.lat, e.lngLat.lng);
|
|
moveElevationMarkerToCursorPosition(e);
|
|
}
|
|
|
|
function moveElevationMarkerToCursorPosition(e: M.MapMouseEvent) {
|
|
elevationMarker.setLngLat(e.lngLat);
|
|
}
|
|
|
|
function handDragStart(e: M.MapMouseEvent, id: string) {
|
|
if (
|
|
!drawing ||
|
|
(e.originalEvent.target as HTMLElement | null)?.classList.contains(
|
|
"route-anchor",
|
|
)
|
|
) {
|
|
return;
|
|
}
|
|
e.preventDefault();
|
|
|
|
const features = map?.queryRenderedFeatures(e.point, {
|
|
layers: [id],
|
|
});
|
|
const segmentId = features?.at(0)?.properties.segmentId;
|
|
if (segmentId !== null) {
|
|
draggingSegment = segmentId;
|
|
}
|
|
|
|
map?.on("mousemove", moveElevationMarkerToCursorPosition);
|
|
map?.once("mouseup", handleDragEnd);
|
|
}
|
|
|
|
function handleDragEnd(e: M.MapMouseEvent) {
|
|
map?.off("mousemove", moveElevationMarkerToCursorPosition);
|
|
epc?.hideCrosshair();
|
|
onsegmentdragend?.({ segment: draggingSegment!, event: e });
|
|
draggingSegment = null;
|
|
}
|
|
|
|
function addCaretLayer(id?: string) {
|
|
if (!map || !id || !map.getSource(id)) {
|
|
return;
|
|
}
|
|
if (map.getLayer("direction-carets")) {
|
|
removeCaretLayer();
|
|
}
|
|
|
|
map.addLayer({
|
|
id: "direction-carets",
|
|
type: "symbol",
|
|
source: id,
|
|
layout: {
|
|
"symbol-placement": "line",
|
|
"symbol-spacing": [
|
|
"interpolate",
|
|
["exponential", 1.5],
|
|
["zoom"],
|
|
0,
|
|
80,
|
|
18,
|
|
200,
|
|
],
|
|
"icon-image": "direction-caret",
|
|
"icon-size": [
|
|
"interpolate",
|
|
["exponential", 1.5],
|
|
["zoom"],
|
|
0,
|
|
0.5,
|
|
18,
|
|
0.8,
|
|
],
|
|
},
|
|
});
|
|
}
|
|
|
|
function removeCaretLayer() {
|
|
if (!map || !map.getLayer("direction-carets")) {
|
|
return;
|
|
}
|
|
map.removeLayer("direction-carets");
|
|
}
|
|
|
|
export function highlightTrail(
|
|
id: string,
|
|
showElevationMarker: boolean = false,
|
|
) {
|
|
if (!id) {
|
|
return;
|
|
}
|
|
if (showElevationMarker) {
|
|
elevationMarker.setOpacity("1");
|
|
}
|
|
map?.setPaintProperty(id, "line-width", 7);
|
|
if (map?.getLayer(id)) {
|
|
hoveringTrail = true;
|
|
}
|
|
// map?.setPaintProperty(id, "line-color", "#2766e3");
|
|
}
|
|
|
|
export function unHighlightTrail(id: string | undefined) {
|
|
if (!id || draggingSegment !== null) {
|
|
return;
|
|
}
|
|
elevationMarker.setOpacity("0");
|
|
epc?.hideCrosshair();
|
|
hoveringTrail = false;
|
|
if (map?.getLayer(id)) {
|
|
map?.setPaintProperty(id, "line-width", 5);
|
|
}
|
|
// map?.setPaintProperty(id, "line-color", "#648ad5");
|
|
}
|
|
|
|
export async function highlightCluster(trail: Trail) {
|
|
if (!map || !map.style) {
|
|
return;
|
|
}
|
|
clusterPopup = createPopupFromTrail(trail);
|
|
clusterPopup.setLngLat([trail.lon!, trail.lat!]).addTo(map);
|
|
|
|
const geojson = await fetchGPX(trail);
|
|
|
|
addClusterHighlightLayer(toGeoJson(geojson));
|
|
|
|
clusterPopup.on("close", () => {
|
|
unHighlightCluster(false);
|
|
});
|
|
}
|
|
|
|
export async function unHighlightCluster(closePopup: boolean = true) {
|
|
if (!map || !map.style) {
|
|
return;
|
|
}
|
|
if (map?.getLayer("cluster-highlight")) {
|
|
map?.removeLayer("cluster-highlight");
|
|
}
|
|
if (closePopup) {
|
|
clusterPopup?.remove();
|
|
}
|
|
}
|
|
|
|
function adjustTrailFocus(activeTrail: number | null) {
|
|
if (activeTrail !== null && trails[activeTrail] !== undefined) {
|
|
if (
|
|
!drawing &&
|
|
fitBounds !== "off" &&
|
|
data.some((d) => d.bbox !== undefined)
|
|
) {
|
|
untrack(() => focusTrail(trails[activeTrail]));
|
|
}
|
|
} else if (activeTrail === null && trails.length) {
|
|
untrack(() => unFocusTrail());
|
|
}
|
|
}
|
|
|
|
function focusTrail(trail: Trail) {
|
|
activeTrail = trails.findIndex((t) => t.id == trail.id);
|
|
if (activeTrail < 0) {
|
|
activeTrail = null;
|
|
return;
|
|
}
|
|
onselect?.(trail);
|
|
|
|
try {
|
|
refreshElevationProfile();
|
|
if (showElevation) {
|
|
epc?.showProfile();
|
|
}
|
|
showWaypoints();
|
|
addCaretLayer(trail.id!);
|
|
flyToBounds();
|
|
} catch (e) {
|
|
console.warn(e);
|
|
}
|
|
}
|
|
|
|
function unFocusTrail(trail?: Trail) {
|
|
if (trail) {
|
|
onunselect?.(trail);
|
|
unHighlightTrail(trail.id!);
|
|
}
|
|
|
|
activeTrail = null;
|
|
flyToBounds();
|
|
|
|
if (showElevation) {
|
|
epc?.hideProfile();
|
|
}
|
|
hideWaypoints();
|
|
removeCaretLayer();
|
|
}
|
|
|
|
function startDrawing() {
|
|
if (!map) {
|
|
return;
|
|
}
|
|
activeTrail ??= 0;
|
|
map.getCanvas().style.cursor = "crosshair";
|
|
if (trails[activeTrail]) {
|
|
removeStartEndMarkers(trails[activeTrail].id);
|
|
}
|
|
}
|
|
|
|
function stopDrawing() {
|
|
if (!map) {
|
|
return;
|
|
}
|
|
map.getCanvas().style.cursor = "inherit";
|
|
|
|
if (activeTrail !== null && trails[activeTrail] && !clusterTrails) {
|
|
addStartEndMarkers(
|
|
trails[activeTrail],
|
|
trails[activeTrail].id,
|
|
data?.at(activeTrail),
|
|
);
|
|
}
|
|
}
|
|
|
|
function addStartEndMarkers(
|
|
trail: Trail,
|
|
id: string | undefined,
|
|
geojson: GeoJSON | null | undefined,
|
|
) {
|
|
if (!map || !trail || !id) {
|
|
return;
|
|
}
|
|
createEmptyLayer(id);
|
|
|
|
layers[id].startMarker ??= new FontawesomeMarker(
|
|
{ icon: "fa fa-bullseye" },
|
|
{},
|
|
);
|
|
|
|
if (!geojson) {
|
|
if (trail.lon && trail.lat) {
|
|
layers[id].startMarker
|
|
.setLngLat([trail.lon, trail.lat])
|
|
.addTo(map);
|
|
}
|
|
return;
|
|
}
|
|
|
|
const startEndPoint = findStartAndEndPoints(geojson);
|
|
|
|
if (!startEndPoint.length) {
|
|
return;
|
|
}
|
|
|
|
if (showInfoPopup) {
|
|
const popup = createPopupFromTrail(trail);
|
|
layers[id].startMarker.setPopup(popup);
|
|
layers[id].endMarker?.setPopup(popup);
|
|
}
|
|
|
|
layers[id].endMarker ??= new FontawesomeMarker(
|
|
{ icon: "fa fa-flag-checkered" },
|
|
{},
|
|
);
|
|
layers[id].endMarker.setLngLat(
|
|
startEndPoint[startEndPoint.length - 1] as M.LngLatLike,
|
|
);
|
|
if (!clusterTrails) {
|
|
layers[id].endMarker.addTo(map);
|
|
}
|
|
|
|
layers[id].startMarker
|
|
.setLngLat(startEndPoint[0] as M.LngLatLike)
|
|
.addTo(map);
|
|
}
|
|
|
|
function removeStartEndMarkers(id: string | undefined) {
|
|
if (!id) {
|
|
return;
|
|
}
|
|
layers[id].startMarker?.remove();
|
|
layers[id].endMarker?.remove();
|
|
}
|
|
|
|
function showWaypoints() {
|
|
if (!map) {
|
|
return;
|
|
}
|
|
|
|
hideWaypoints();
|
|
for (const waypoint of waypoints) {
|
|
if (!markers.find((m) => m._element.id == waypoint.id)) {
|
|
const marker = createMarkerFromWaypoint(
|
|
waypoint,
|
|
onmarkerdragend,
|
|
);
|
|
marker.addTo(map);
|
|
markers.push(marker);
|
|
}
|
|
}
|
|
markers = markers.filter((marker) => {
|
|
if (!waypoints.find((w) => w.id == marker._element.id)) {
|
|
marker.remove();
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
}
|
|
|
|
function hideWaypoints() {
|
|
if (!map) {
|
|
return;
|
|
}
|
|
for (const m of markers) {
|
|
m.remove();
|
|
}
|
|
markers = [];
|
|
}
|
|
|
|
function toggleEpcTheme() {
|
|
if ($theme == "dark") {
|
|
epc?.toggleTheme({
|
|
profileBackgroundColor: "#191b24",
|
|
elevationGridColor: "#ddd2",
|
|
labelColor: "#ddd8",
|
|
crosshairColor: "#fff5",
|
|
tooltipBackgroundColor: "#242734",
|
|
tooltipTextColor: "#fff",
|
|
});
|
|
} else {
|
|
epc?.toggleTheme({
|
|
profileBackgroundColor: "#242734",
|
|
elevationGridColor: "#0002",
|
|
labelColor: "#0009",
|
|
crosshairColor: "#0005",
|
|
tooltipBackgroundColor: "#fff",
|
|
tooltipTextColor: "#000",
|
|
});
|
|
}
|
|
}
|
|
|
|
onMount(async () => {
|
|
const initialState = {
|
|
lng: 0,
|
|
lat: 0,
|
|
zoom: 1,
|
|
};
|
|
const ElevationProfileControl = (
|
|
await import(
|
|
"$lib/vendor/maplibre-elevation-profile/elevationprofile-control"
|
|
)
|
|
).ElevationProfileControl;
|
|
|
|
const mapStyles: { text: string; value: string; thumbnail?: string }[] =
|
|
[
|
|
...((page.data.settings as Settings)?.tilesets ?? []).map(
|
|
(t) => ({
|
|
text: t.name,
|
|
value: t.url,
|
|
}),
|
|
),
|
|
...baseMapStyles,
|
|
];
|
|
|
|
mapState = JSON.parse(
|
|
localStorage.getItem("map-state") ??
|
|
'{"selectedLayers": {}, "selectedStyle": 0}',
|
|
);
|
|
|
|
if (!mapContainer) {
|
|
return;
|
|
}
|
|
|
|
const finalMapOptions: M.MapOptions = {
|
|
...{
|
|
container: mapContainer,
|
|
style: mapStyles[mapState.selectedStyle].value,
|
|
center: [initialState.lng, initialState.lat],
|
|
zoom: initialState.zoom,
|
|
},
|
|
...mapOptions,
|
|
};
|
|
map = new M.Map(finalMapOptions);
|
|
|
|
elevationMarker = new FontawesomeMarker(
|
|
{
|
|
id: "elevation-marker",
|
|
icon: "fa-regular fa-circle",
|
|
fontSize: "xs",
|
|
width: 4,
|
|
backgroundColor: "bg-primary",
|
|
fontColor: "white",
|
|
},
|
|
{},
|
|
);
|
|
elevationMarker.setLngLat([0, 0]).addTo(map);
|
|
elevationMarker.setOpacity("0");
|
|
|
|
let img = new Image(20, 20);
|
|
img.onload = () => map!.addImage("direction-caret", img);
|
|
img.src = directionCaret;
|
|
|
|
const switcherControl = new StyleSwitcherControl({
|
|
styles: mapStyles,
|
|
layers: overlayLayers,
|
|
onMapStyleSwitch: (i, style) => {
|
|
layers = {};
|
|
map?.setStyle(style.value);
|
|
mapState.selectedStyle = i;
|
|
localStorage.setItem("map-state", JSON.stringify(mapState));
|
|
},
|
|
onLayerChange: (checked, layer) => {
|
|
mapState.selectedLayers[layer.text] = checked;
|
|
localStorage.setItem("map-state", JSON.stringify(mapState));
|
|
|
|
if (checked) {
|
|
addOverlayLayer(layer);
|
|
} else {
|
|
removeOverlayLayer(layer);
|
|
}
|
|
},
|
|
state: mapState,
|
|
});
|
|
|
|
map.addControl(
|
|
new M.NavigationControl({ visualizePitch: showTerrain }),
|
|
);
|
|
map.addControl(
|
|
new M.ScaleControl({
|
|
maxWidth: 120,
|
|
unit: page.data.settings?.unit ?? "metric",
|
|
}),
|
|
"top-left",
|
|
);
|
|
|
|
map.addControl(
|
|
new M.GeolocateControl({
|
|
positionOptions: {
|
|
enableHighAccuracy: true,
|
|
},
|
|
fitBoundsOptions: {
|
|
animate: fitBounds == "animate",
|
|
},
|
|
trackUserLocation: true,
|
|
}),
|
|
);
|
|
|
|
if (showStyleSwitcher) {
|
|
map.addControl(switcherControl);
|
|
}
|
|
|
|
if (showElevation) {
|
|
epc = new ElevationProfileControl({
|
|
visible: false,
|
|
profileBackgroundColor:
|
|
$theme == "light" ? "#242734" : "#191b24",
|
|
backgroundColor: "bg-menu-background/90",
|
|
unit: page.data.settings?.unit ?? "metric",
|
|
profileLineWidth: 3,
|
|
displayDistanceGrid: true,
|
|
tooltipDisplayDPlus: false,
|
|
tooltipBackgroundColor: $theme == "light" ? "#fff" : "#242734",
|
|
tooltipTextColor: $theme == "light" ? "#000" : "#fff",
|
|
zoom: false,
|
|
container: elevationProfileContainer,
|
|
onEnter: () => {
|
|
elevationMarker.setOpacity("1");
|
|
},
|
|
onLeave: () => {
|
|
elevationMarker.setOpacity("0");
|
|
},
|
|
onMove: (data) => {
|
|
if (!hoveringTrail) {
|
|
elevationMarker.setLngLat(
|
|
data.position as M.LngLatLike,
|
|
);
|
|
}
|
|
},
|
|
});
|
|
toggleEpcTheme();
|
|
map.addControl(epc);
|
|
}
|
|
|
|
if (showFullscreen) {
|
|
map.addControl(
|
|
new FullscreenControl(() => {
|
|
onfullscreen?.();
|
|
}),
|
|
"bottom-right",
|
|
);
|
|
}
|
|
|
|
if (showTerrain && page.data.settings?.terrain?.terrain) {
|
|
map!.addControl(
|
|
new M.TerrainControl({
|
|
source: "terrain",
|
|
}),
|
|
);
|
|
}
|
|
|
|
map.on("styledata", () => {
|
|
if (showTerrain) {
|
|
try {
|
|
if (
|
|
page.data.settings?.terrain?.terrain &&
|
|
!map?.getSource("terrain")
|
|
) {
|
|
map!.addSource("terrain", {
|
|
type: "raster-dem",
|
|
url: page.data.settings?.terrain?.terrain,
|
|
});
|
|
}
|
|
if (
|
|
page.data.settings?.terrain?.hillshading &&
|
|
!map?.getSource("hillshading")
|
|
) {
|
|
map!.addSource("hillshading", {
|
|
type: "raster-dem",
|
|
url: page.data.settings?.terrain?.hillshading,
|
|
});
|
|
map!.addLayer({
|
|
id: "hillshading",
|
|
source: "terrain",
|
|
type: "hillshade",
|
|
});
|
|
}
|
|
|
|
trails.forEach((t, i) => {
|
|
const layerId = t.id!;
|
|
|
|
if (map?.getLayer(layerId)) {
|
|
return;
|
|
}
|
|
addTrailLayer(t, layerId, i, data[i]);
|
|
});
|
|
if (
|
|
activeTrail !== null &&
|
|
!map?.getLayer("direction-carets")
|
|
) {
|
|
addCaretLayer(trails[activeTrail].id!);
|
|
}
|
|
} catch (e) {}
|
|
}
|
|
});
|
|
|
|
map.on("moveend", (e) => {
|
|
onmoveend?.(e.target);
|
|
});
|
|
|
|
map.on("zoom", (e) => {
|
|
onzoom?.(e.target);
|
|
});
|
|
|
|
map.on("click", (e) => {
|
|
if (hoveringTrail && drawing) {
|
|
return;
|
|
}
|
|
onclick?.(e);
|
|
});
|
|
|
|
map.on("click", "clusters", async (e) => {
|
|
if (!map) {
|
|
return;
|
|
}
|
|
const features = map.queryRenderedFeatures(e.point, {
|
|
layers: ["clusters"],
|
|
});
|
|
const clusterId = features[0].properties.cluster_id;
|
|
const zoom = await (
|
|
map.getSource("trails") as M.GeoJSONSource
|
|
).getClusterExpansionZoom(clusterId);
|
|
map.flyTo({
|
|
center: (features[0].geometry as any).coordinates,
|
|
zoom,
|
|
});
|
|
});
|
|
|
|
map.on(
|
|
"click",
|
|
"unclustered-point",
|
|
async (e: M.MapMouseEvent & Object) => {
|
|
const trail = trails.find(
|
|
(t) => t.id == (e as any).features[0].properties.trail,
|
|
);
|
|
if (!trail || !map) {
|
|
return;
|
|
}
|
|
highlightCluster(trail);
|
|
},
|
|
);
|
|
|
|
map.on("mouseenter", "clusters", () => {
|
|
map!.getCanvas().style.cursor = "pointer";
|
|
});
|
|
map.on("mouseleave", "clusters", () => {
|
|
map!.getCanvas().style.cursor = "";
|
|
});
|
|
|
|
map.on("mouseenter", "unclustered-point", () => {
|
|
map!.getCanvas().style.cursor = "pointer";
|
|
});
|
|
map.on("mouseleave", "unclustered-point", () => {
|
|
map!.getCanvas().style.cursor = "";
|
|
});
|
|
|
|
map.on("load", () => {
|
|
initMap(true);
|
|
oninit?.(map!);
|
|
});
|
|
|
|
showWaypoints();
|
|
});
|
|
|
|
onDestroy(() => {
|
|
map?.remove();
|
|
});
|
|
|
|
function handleKeydown(e: KeyboardEvent) {
|
|
const target = e.target as HTMLElement;
|
|
|
|
const isInputField =
|
|
target.tagName === "INPUT" ||
|
|
target.tagName === "TEXTAREA" ||
|
|
target.isContentEditable;
|
|
|
|
if (isInputField) {
|
|
return;
|
|
}
|
|
|
|
if (e.key == "m") {
|
|
if (trails.length === 1) {
|
|
removeCaretLayer();
|
|
removeTrailLayer(trails[0].id!);
|
|
}
|
|
}
|
|
}
|
|
|
|
function handleKeyup(e: KeyboardEvent) {
|
|
const target = e.target as HTMLElement;
|
|
|
|
const isInputField =
|
|
target.tagName === "INPUT" ||
|
|
target.tagName === "TEXTAREA" ||
|
|
target.isContentEditable;
|
|
|
|
if (isInputField) {
|
|
return;
|
|
}
|
|
|
|
if (e.key == "m") {
|
|
if (trails.length === 1) {
|
|
addTrailLayer(trails[0], trails[0].id!, 0, data[0]);
|
|
addCaretLayer(trails[0].id);
|
|
}
|
|
} else if (e.key == "p") {
|
|
if (showElevation) {
|
|
epc?.toggleProfile();
|
|
}
|
|
}
|
|
}
|
|
|
|
function addOverlayLayer(layer: RadioItem) {
|
|
map?.addSource(layer.text + "overlay-source", {
|
|
type: "raster",
|
|
tiles: [layer.value],
|
|
tileSize: 256,
|
|
});
|
|
|
|
map?.addLayer({
|
|
id: layer.text + "overlay-layer",
|
|
type: "raster",
|
|
source: layer.text + "overlay-source",
|
|
minzoom: 4,
|
|
});
|
|
}
|
|
|
|
function removeOverlayLayer(layer: RadioItem) {
|
|
map?.removeLayer(layer.text + "overlay-layer");
|
|
map?.removeSource(layer.text + "overlay-source");
|
|
}
|
|
</script>
|
|
|
|
<svelte:window on:keydown={handleKeydown} on:keyup={handleKeyup} />
|
|
<div id="map" bind:this={mapContainer}></div>
|
|
|
|
<style lang="postcss">
|
|
@reference "tailwindcss";
|
|
@reference "../../../css/app.css";
|
|
|
|
#map {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
:global(.maplibregl-popup-content) {
|
|
@apply bg-background rounded-md shadow-xl p-0 overflow-hidden pr-5;
|
|
}
|
|
|
|
:global(.maplibregl-popup-close-button) {
|
|
top: 4px;
|
|
right: 4px;
|
|
line-height: 0;
|
|
padding-bottom: 2.5px;
|
|
@apply bg-menu-item-background-focus w-3 aspect-square rounded-full;
|
|
}
|
|
</style>
|