20 lines
595 B
TypeScript
20 lines
595 B
TypeScript
|
/**
|
||
|
* 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' |
|
||
|
'planning_combined' |
|
||
|
'sust_dec' |
|
||
|
'building_attachment_form' |
|
||
|
'landuse' |
|
||
|
'dynamics_demolished_count';
|
||
|
|
||
|
export type SpecialMapTileset = 'base_light' | 'base_night' | 'highlight' | 'number_labels';
|
||
|
|
||
|
export type MapTileset = BuildingMapTileset | SpecialMapTileset;
|