diff --git a/css/app.css b/css/app.css index 2fd1d80..b3f6f35 100644 --- a/css/app.css +++ b/css/app.css @@ -221,7 +221,8 @@ input:invalid { border-radius: 8px; } /* Map container border for building view */ -.bview-border { +.bview-active { border:#263aac 4px solid; border-radius: 8px; + background-color: #aad3df; } \ No newline at end of file diff --git a/webgis/js/gis.js b/webgis/js/gis.js index ea99b87..76ebfcd 100644 --- a/webgis/js/gis.js +++ b/webgis/js/gis.js @@ -160,7 +160,7 @@ GIS.activateBuildingView = async function(layerId) { map.setMaxZoom(25); // This is terrible... UI.addBuildingViewBar(); - map._container.classList.add('bview-border'); + map._container.classList.add('bview-active'); GisState.bViewActive = true; } /** diff --git a/webgis/js/layer_options.js b/webgis/js/layer_options.js index b34ee9f..e81bc69 100644 --- a/webgis/js/layer_options.js +++ b/webgis/js/layer_options.js @@ -48,9 +48,9 @@ Options.buildings = { Options.boundaries = { color: '#222', opacity: 1, - weight: 1.5, - fillColor: '#d8dbdd', - fillOpacity: 0.5 + weight: 2, + fillColor: '#ebdfccff', + fillOpacity: 1, }; Options.walls = { color: '#10ee47',