parent
a2248b99d9
commit
86d437a609
@ -378,6 +378,8 @@
|
||||
<LineSymbolizer stroke="#888" stroke-width="3.0"/>
|
||||
</Rule>
|
||||
</Style>
|
||||
<Style name="empty_map">
|
||||
</Style>
|
||||
<Style name="conservation_area">
|
||||
<Rule>
|
||||
<PolygonSymbolizer fill="#73ebaf" />
|
||||
|
@ -248,6 +248,15 @@ export const categoryMapsConfig: {[key in Category]: CategoryMapDefinition[]} =
|
||||
{ color: '#8500d4', text: 'In Archaeological Priority Area'},
|
||||
]
|
||||
},
|
||||
},
|
||||
{
|
||||
mapStyle: 'empty_map',
|
||||
legend: {
|
||||
title: 'Empty map',
|
||||
disclaimer: 'This is an empty map to see overlays without distraction.',
|
||||
elements: [
|
||||
]
|
||||
},
|
||||
}
|
||||
],
|
||||
[Category.Sustainability]: [{
|
||||
|
@ -15,6 +15,7 @@ export type BuildingMapTileset = 'date_year' |
|
||||
'planning_applications_status_recent' |
|
||||
'planning_applications_status_very_recent' |
|
||||
'planning_combined' |
|
||||
'empty_map' |
|
||||
'sust_dec' |
|
||||
'building_attachment_form' |
|
||||
'landuse' |
|
||||
|
@ -191,6 +191,13 @@ const LAYER_QUERIES = {
|
||||
OR planning_heritage_at_risk_url <> ''
|
||||
OR planning_in_apa_url <> ''
|
||||
`,
|
||||
empty_map: `
|
||||
SELECT
|
||||
geometry_id
|
||||
FROM
|
||||
buildings
|
||||
WHERE
|
||||
sust_dec IS NOT NULL`,
|
||||
conservation_area: `
|
||||
SELECT
|
||||
geometry_id
|
||||
|
Loading…
Reference in New Issue
Block a user