2021-05-02 13:24:27 -04:00
|
|
|
/**
|
|
|
|
* This file defines all the valid tileset names that can be obtained from the tilserver.
|
|
|
|
* Adjust the values here if modifying the list of styles in the tileserver.
|
|
|
|
*/
|
|
|
|
|
|
|
|
export type BuildingMapTileset = 'date_year' |
|
|
|
|
'size_height' |
|
|
|
|
'construction_core_material' |
|
|
|
|
'location' |
|
|
|
|
'likes' |
|
2021-10-01 08:30:03 -04:00
|
|
|
'community_local_significance_total' |
|
2022-07-04 04:59:54 -04:00
|
|
|
'community_expected_planning_application_total' |
|
2021-10-01 08:30:03 -04:00
|
|
|
'community_in_public_ownership' |
|
2021-05-02 13:24:27 -04:00
|
|
|
'planning_combined' |
|
|
|
|
'sust_dec' |
|
|
|
|
'building_attachment_form' |
|
|
|
|
'landuse' |
|
2022-06-10 09:13:19 -04:00
|
|
|
'dynamics_demolished_count' |
|
|
|
|
'team';
|
2021-05-02 13:24:27 -04:00
|
|
|
|
|
|
|
export type SpecialMapTileset = 'base_light' | 'base_night' | 'highlight' | 'number_labels';
|
|
|
|
|
|
|
|
export type MapTileset = BuildingMapTileset | SpecialMapTileset;
|