From d7c6c8f5fd2ef2b39f23f587d542f9b5831e00f4 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 2 Jun 2025 15:53:19 +0300 Subject: [PATCH] feat(geomap): the line of GPX traces now respects the `#color` attribute --- apps/client/src/widgets/type_widgets/geo_map.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/client/src/widgets/type_widgets/geo_map.ts b/apps/client/src/widgets/type_widgets/geo_map.ts index 81e1712a0..7f2b3e52a 100644 --- a/apps/client/src/widgets/type_widgets/geo_map.ts +++ b/apps/client/src/widgets/type_widgets/geo_map.ts @@ -239,6 +239,9 @@ export default class GeoMapTypeWidget extends TypeWidget { wptIcons: { "": this.#buildIcon("bx bx-pin") } + }, + polyline_options: { + color: note.getLabelValue("color") ?? "blue" } }); track.addTo(this.geoMapWidget.map);