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;
|
2021-12-07 17:46:57 +01:00
|
|
|
public geojsonSource?: string;
|
|
|
|
public geojsonZoomLevel?: number;
|
|
|
|
public isOsmCacheLayer: boolean;
|
2021-11-07 16:34:51 +01:00
|
|
|
public readonly mercatorCrs: boolean;
|
2022-02-11 03:57:39 +01:00
|
|
|
public readonly idKey : string
|
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,
|
2022-02-11 03:57:39 +01:00
|
|
|
idKey?: string
|
2022-04-14 00:53:38 +02:00
|
|
|
}, isSpecialLayer: boolean, 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-11-07 16:34:51 +01: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)) {
|
2021-10-27 03:52:19 +02:00
|
|
|
throw `Source defines a geojson-zoomLevel, but does not specify {x} nor {y} (or equivalent), this is probably a bug (in context ${context})`
|
2021-11-07 16:34:51 +01:00
|
|
|
}
|
|
|
|
}
|
2022-04-14 00:53:38 +02:00
|
|
|
if(params.osmTags !== undefined && !isSpecialLayer){
|
|
|
|
const optimized = params.osmTags.optimize()
|
|
|
|
if(optimized === false){
|
|
|
|
throw "Error at "+context+": the specified tags are conflicting with each other: they will never match anything at all"
|
|
|
|
}
|
|
|
|
if(optimized === true){
|
|
|
|
throw "Error at "+context+": the specified tags are very wide: they will always match everything"
|
|
|
|
}
|
|
|
|
}
|
2021-11-07 16:34:51 +01:00
|
|
|
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;
|
2022-02-11 03:57:39 +01:00
|
|
|
this.idKey= params.idKey
|
2021-03-20 23:45:52 +01:00
|
|
|
}
|
|
|
|
}
|