| 
									
										
										
										
											2023-04-21 16:47:25 +02:00
										 |  |  | export type EliCategory = | 
					
						
							|  |  |  |     | "photo" | 
					
						
							|  |  |  |     | "map" | 
					
						
							|  |  |  |     | "historicmap" | 
					
						
							|  |  |  |     | "osmbasedmap" | 
					
						
							|  |  |  |     | "historicphoto" | 
					
						
							|  |  |  |     | "qa" | 
					
						
							|  |  |  |     | "elevation" | 
					
						
							|  |  |  |     | "other" | 
					
						
							| 
									
										
										
										
											2023-04-21 16:19:36 +02:00
										 |  |  | export interface RasterLayerProperties { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The name of the imagery source | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     readonly name: string | Record<string, string> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     readonly isOverlay?: boolean | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     readonly id: string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     readonly url: string | 
					
						
							| 
									
										
										
										
											2023-04-21 16:47:25 +02:00
										 |  |  |     readonly category?: string | EliCategory | 
					
						
							| 
									
										
										
										
											2023-04-21 16:19:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     readonly attribution?: { | 
					
						
							|  |  |  |         readonly url?: string | 
					
						
							|  |  |  |         readonly text?: string | 
					
						
							|  |  |  |         readonly html?: string | 
					
						
							|  |  |  |         readonly required?: boolean | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     readonly min_zoom?: number | 
					
						
							|  |  |  |     readonly max_zoom?: number | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     readonly best?: boolean | 
					
						
							|  |  |  | } |