| 
									
										
										
										
											2021-03-29 00:41:53 +02:00
										 |  |  | import {TagsFilter} from "../../Logic/Tags/TagsFilter"; | 
					
						
							| 
									
										
										
										
											2021-10-27 03:52:19 +02:00
										 |  |  | import {RegexTag} from "../../Logic/Tags/RegexTag"; | 
					
						
							| 
									
										
										
										
											2021-03-20 23:45:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | export default class SourceConfig { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-21 02:10:42 +02:00
										 |  |  |     public readonly osmTags?: TagsFilter; | 
					
						
							|  |  |  |     public readonly overpassScript?: string; | 
					
						
							|  |  |  |     public readonly geojsonSource?: string; | 
					
						
							|  |  |  |     public readonly geojsonZoomLevel?: number; | 
					
						
							|  |  |  |     public readonly isOsmCacheLayer: boolean; | 
					
						
							| 
									
										
										
										
											2021-10-27 03:52:19 +02:00
										 |  |  |    public readonly mercatorCrs: boolean; | 
					
						
							| 
									
										
										
										
											2021-03-20 23:45:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     constructor(params: { | 
					
						
							| 
									
										
										
										
											2021-10-27 03:52:19 +02:00
										 |  |  |         mercatorCrs?: boolean; | 
					
						
							| 
									
										
										
										
											2021-03-20 23:45:52 +01:00
										 |  |  |         osmTags?: TagsFilter, | 
					
						
							|  |  |  |         overpassScript?: string, | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |         geojsonSource?: string, | 
					
						
							| 
									
										
										
										
											2021-05-14 02:25:30 +02:00
										 |  |  |         isOsmCache?: boolean, | 
					
						
							| 
									
										
										
										
											2021-09-21 02:10:42 +02:00
										 |  |  |         geojsonSourceLevel?: number, | 
					
						
							| 
									
										
										
										
											2021-05-14 02:25:30 +02:00
										 |  |  |     }, context?: string) { | 
					
						
							| 
									
										
										
										
											2021-03-20 23:45:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         let defined = 0; | 
					
						
							|  |  |  |         if (params.osmTags) { | 
					
						
							|  |  |  |             defined++; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (params.overpassScript) { | 
					
						
							|  |  |  |             defined++; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (params.geojsonSource) { | 
					
						
							|  |  |  |             defined++; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (defined == 0) { | 
					
						
							| 
									
										
										
										
											2021-05-17 00:31:10 +02:00
										 |  |  |             throw `Source: nothing correct defined in the source (in ${context}) (the params are ${JSON.stringify(params)})` | 
					
						
							| 
									
										
										
										
											2021-03-20 23:45:52 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  |         if (params.isOsmCache && params.geojsonSource == undefined) { | 
					
						
							| 
									
										
										
										
											2021-05-14 02:25:30 +02:00
										 |  |  |             console.error(params) | 
					
						
							|  |  |  |             throw `Source said it is a OSM-cached layer, but didn't define the actual source of the cache (in context ${context})` | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-10-27 03:52:19 +02:00
										 |  |  |         if(params.geojsonSource !== undefined && params.geojsonSourceLevel !== undefined){ | 
					
						
							|  |  |  |             if(! ["x","y","x_min","x_max","y_min","Y_max"].some(toSearch => params.geojsonSource.indexOf(toSearch) > 0)){ | 
					
						
							|  |  |  |                 throw `Source defines a geojson-zoomLevel, but does not specify {x} nor {y} (or equivalent), this is probably a bug (in context ${context})` | 
					
						
							|  |  |  |         }} | 
					
						
							|  |  |  |         this.osmTags = params.osmTags ?? new RegexTag("id",/.*/); | 
					
						
							| 
									
										
										
										
											2021-03-20 23:45:52 +01:00
										 |  |  |         this.overpassScript = params.overpassScript; | 
					
						
							|  |  |  |         this.geojsonSource = params.geojsonSource; | 
					
						
							| 
									
										
										
										
											2021-04-22 03:30:46 +02:00
										 |  |  |         this.geojsonZoomLevel = params.geojsonSourceLevel; | 
					
						
							| 
									
										
										
										
											2021-05-14 02:25:30 +02:00
										 |  |  |         this.isOsmCacheLayer = params.isOsmCache ?? false; | 
					
						
							| 
									
										
										
										
											2021-10-27 03:52:19 +02:00
										 |  |  |         this.mercatorCrs = params.mercatorCrs ?? false; | 
					
						
							| 
									
										
										
										
											2021-03-20 23:45:52 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } |