From a2a0d51159bd9d1e1cf0b7d133782ca94504a452 Mon Sep 17 00:00:00 2001 From: Alexander Rolek Date: Sun, 29 Dec 2024 13:43:39 -0700 Subject: [PATCH] ui: Fix inspector CSS. Fix custom map control After the viewer was migrated from mapboxgl to maplibregl the associated CSS references were not updated. This caused the styling for the inspector to use default browser styles. The style references have now been corrected. Additionally the debug tile line map control implementation was was using mapboxgl CSS classes so the control was not being added to the map. This has been fix. --- ui/src/App.vue | 22 +++++++++++-------- .../{MapboxControls.js => MapControls.js} | 4 ++-- .../{ViewerMapbox.vue => Viewer.vue} | 4 ++-- 3 files changed, 17 insertions(+), 13 deletions(-) rename ui/src/components/{MapboxControls.js => MapControls.js} (84%) rename ui/src/components/{ViewerMapbox.vue => Viewer.vue} (92%) diff --git a/ui/src/App.vue b/ui/src/App.vue index a5dcbc13a..18bc4ddc4 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -1,6 +1,6 @@