From 74e0630a419a55d73e536df5c92d24f2be39e36a Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 16 Apr 2026 05:14:27 +0000 Subject: [PATCH] Revert proxied tile to not use layer control It's disabling the important layer. --- ts/components/MapProxiedArcgisTile.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ts/components/MapProxiedArcgisTile.vue b/ts/components/MapProxiedArcgisTile.vue index 002721a7..1bc54516 100644 --- a/ts/components/MapProxiedArcgisTile.vue +++ b/ts/components/MapProxiedArcgisTile.vue @@ -219,7 +219,8 @@ const initializeMap = () => { try { const _map = new maplibregl.Map({ container: mapContainer.value, - style: "https://tiles.stadiamaps.com/styles/osm_bright.json", + //style: "https://tiles.stadiamaps.com/styles/alidade_satellite.json", + style: "https://tiles.stadiamaps.com/styles/alidade_smooth.json", zoom: 19, }); if (props.markers.length > 0) { @@ -302,12 +303,12 @@ const initializeMap = () => { console.log("MapProxiedArcgisTile loaded"); }); _map.addControl(new maplibregl.NavigationControl(), "top-left"); - _map.addControl( + /*_map.addControl( new LayersControl({ title: "layers", customLabels: { "countries-fill": "Countries" }, }), - ); + );*/ console.log("MapProxiedArcgisTile initialized"); } catch (e) { console.error("hey dummy", e);