| 
									
										
										
										
											2020-10-27 01:01:34 +01:00
										 |  |  | import * as drinkingWater from "../assets/layers/drinking_water/drinking_water.json"; | 
					
						
							|  |  |  | import * as ghostbikes from "../assets/layers/ghost_bike/ghost_bike.json" | 
					
						
							|  |  |  | import * as viewpoint from "../assets/layers/viewpoint/viewpoint.json" | 
					
						
							|  |  |  | import * as bike_parking from "../assets/layers/bike_parking/bike_parking.json" | 
					
						
							|  |  |  | import * as bike_repair_station from "../assets/layers/bike_repair_station/bike_repair_station.json" | 
					
						
							|  |  |  | import * as birdhides from "../assets/layers/bird_hide/birdhides.json" | 
					
						
							|  |  |  | import * as nature_reserve from "../assets/layers/nature_reserve/nature_reserve.json" | 
					
						
							|  |  |  | import * as bike_cafes from "../assets/layers/bike_cafe/bike_cafes.json" | 
					
						
							|  |  |  | import * as bike_monitoring_station from "../assets/layers/bike_monitoring_station/bike_monitoring_station.json" | 
					
						
							|  |  |  | import * as cycling_themed_objects from "../assets/layers/cycling_themed_object/cycling_themed_objects.json" | 
					
						
							|  |  |  | import * as bike_shops from "../assets/layers/bike_shop/bike_shop.json" | 
					
						
							| 
									
										
										
										
											2020-11-09 19:55:29 +01:00
										 |  |  | import * as bike_cleaning from "../assets/layers/bike_cleaning/bike_cleaning.json" | 
					
						
							| 
									
										
										
										
											2021-01-05 02:59:29 +01:00
										 |  |  | import * as bicycle_library from "../assets/layers/bicycle_library/bicycle_library.json" | 
					
						
							| 
									
										
										
										
											2021-01-09 02:11:43 +01:00
										 |  |  | import * as bicycle_tube_vending_machine from "../assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json" | 
					
						
							| 
									
										
										
										
											2020-10-27 01:01:34 +01:00
										 |  |  | import * as maps from "../assets/layers/maps/maps.json" | 
					
						
							|  |  |  | import * as information_boards from "../assets/layers/information_board/information_board.json" | 
					
						
							| 
									
										
										
										
											2020-11-17 02:22:48 +01:00
										 |  |  | import * as direction from "../assets/layers/direction/direction.json" | 
					
						
							| 
									
										
										
										
											2020-11-17 16:29:51 +01:00
										 |  |  | import * as surveillance_camera from "../assets/layers/surveillance_cameras/surveillance_cameras.json" | 
					
						
							| 
									
										
										
										
											2020-11-21 16:44:48 +01:00
										 |  |  | import * as toilets from "../assets/layers/toilets/toilets.json" | 
					
						
							| 
									
										
										
										
											2020-11-25 16:10:14 +01:00
										 |  |  | import * as bookcases from "../assets/layers/public_bookcases/public_bookcases.json" | 
					
						
							| 
									
										
										
										
											2020-12-27 14:23:45 +01:00
										 |  |  | import * as tree_nodes from "../assets/layers/trees/tree_nodes.json" | 
					
						
							| 
									
										
										
										
											2020-10-27 01:01:34 +01:00
										 |  |  | import LayerConfig from "./JSON/LayerConfig"; | 
					
						
							| 
									
										
										
										
											2021-01-06 02:52:38 +01:00
										 |  |  | import {LayerConfigJson} from "./JSON/LayerConfigJson"; | 
					
						
							| 
									
										
										
										
											2020-10-27 01:01:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | export default class SharedLayers { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-06 02:52:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     private static sharedLayersListRaw : LayerConfigJson[] = [ | 
					
						
							|  |  |  |         drinkingWater, | 
					
						
							|  |  |  |         ghostbikes, | 
					
						
							|  |  |  |         viewpoint, | 
					
						
							|  |  |  |         bike_parking, | 
					
						
							|  |  |  |         bike_repair_station, | 
					
						
							|  |  |  |         bike_monitoring_station, | 
					
						
							|  |  |  |         birdhides, | 
					
						
							|  |  |  |         nature_reserve, | 
					
						
							|  |  |  |         bike_cafes, | 
					
						
							|  |  |  |         bicycle_library, | 
					
						
							|  |  |  |         cycling_themed_objects, | 
					
						
							|  |  |  |         bike_shops, | 
					
						
							|  |  |  |         bike_cleaning, | 
					
						
							| 
									
										
										
										
											2021-01-09 02:11:43 +01:00
										 |  |  |         bicycle_tube_vending_machine, | 
					
						
							| 
									
										
										
										
											2021-01-06 02:52:38 +01:00
										 |  |  |         maps, | 
					
						
							|  |  |  |         direction, | 
					
						
							|  |  |  |         information_boards, | 
					
						
							|  |  |  |         toilets, | 
					
						
							|  |  |  |         bookcases, | 
					
						
							|  |  |  |         surveillance_camera, | 
					
						
							|  |  |  |         tree_nodes | 
					
						
							|  |  |  |     ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Must be below the list...
 | 
					
						
							| 
									
										
										
										
											2020-10-27 01:01:34 +01:00
										 |  |  |     public static sharedLayers: Map<string, LayerConfig> = SharedLayers.getSharedLayers(); | 
					
						
							| 
									
										
										
										
											2021-01-06 02:52:38 +01:00
										 |  |  |     public static sharedLayersJson: Map<string, any> = SharedLayers.getSharedLayersJson(); | 
					
						
							| 
									
										
										
										
											2020-10-27 01:01:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-06 02:52:38 +01:00
										 |  |  |     private static getSharedLayers(): Map<string, LayerConfig> { | 
					
						
							| 
									
										
										
										
											2020-10-27 01:01:34 +01:00
										 |  |  |         const sharedLayers = new Map<string, LayerConfig>(); | 
					
						
							| 
									
										
										
										
											2021-01-06 02:52:38 +01:00
										 |  |  |         for (const layer of SharedLayers.sharedLayersListRaw) { | 
					
						
							| 
									
										
										
										
											2021-01-08 03:57:18 +01:00
										 |  |  |             const parsed = new LayerConfig(layer,  "shared_layers") | 
					
						
							| 
									
										
										
										
											2021-01-06 02:52:38 +01:00
										 |  |  |             sharedLayers.set(layer.id, parsed); | 
					
						
							|  |  |  |             sharedLayers[layer.id] = parsed; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return sharedLayers; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private static getSharedLayersJson(): Map<string, any> { | 
					
						
							|  |  |  |         const sharedLayers = new Map<string, any>(); | 
					
						
							|  |  |  |         for (const layer of SharedLayers.sharedLayersListRaw) { | 
					
						
							| 
									
										
										
										
											2020-10-27 01:01:34 +01:00
										 |  |  |             sharedLayers.set(layer.id, layer); | 
					
						
							|  |  |  |             sharedLayers[layer.id] = layer; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return sharedLayers; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-01-06 02:52:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-27 14:23:45 +01:00
										 |  |  | } |