diff --git a/packages/geo/src/lib/feature/shared/feature.interfaces.ts b/packages/geo/src/lib/feature/shared/feature.interfaces.ts index 8715ca578c..ccbe35a807 100644 --- a/packages/geo/src/lib/feature/shared/feature.interfaces.ts +++ b/packages/geo/src/lib/feature/shared/feature.interfaces.ts @@ -21,6 +21,7 @@ export interface FeatureMeta { id: EntityKey; title?: string; mapTitle?: string; + sourceTitle?: string; order?: number; alias?: {[key: string]: string}; revision?: number; diff --git a/packages/geo/src/lib/query/shared/query.service.ts b/packages/geo/src/lib/query/shared/query.service.ts index 3a9a115c16..8dd601eeaf 100644 --- a/packages/geo/src/lib/query/shared/query.service.ts +++ b/packages/geo/src/lib/query/shared/query.service.ts @@ -111,6 +111,7 @@ export class QueryService { id: uuid(), title, mapTitle: title, + sourceTitle: layer.title, order: 1000 - layer.zIndex });