Skip to content

Commit

Permalink
refactor(demo) provide composite catalog (#411)
Browse files Browse the repository at this point in the history
* refactor(demo) provide composite catalog

* refactor(catalog): typing of ICompositeCatalog

* refactor(catalog) fix merge master

Co-authored-by: hugbe8 <[email protected]>
  • Loading branch information
mbarbeau and hugbe8 committed May 11, 2020
1 parent 7d836c0 commit d67c718
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,78 @@ export const environment: Environment = {
type: 'wmts',
matrixSet: 'EPSG_3857',
version: '1.3.0'
},
{
id: 'fusion_catalog',
title: '(composite catalog) fusion catalog',
url: '',
composite: [
{
id: 'tq_swtq',
url: 'https://geoegl.msp.gouv.qc.ca/apis/ws/swtq'
},
{
id: 'rn_wmts',
url: 'https://servicesmatriciels.mern.gouv.qc.ca/erdas-iws/ogc/wmts/Cartes_Images',
type: 'wmts',
crossOrigin: true,
matrixSet: 'EPSG_3857',
version: '1.0.0'
}
]
},
{
id: 'group_impose',
title: '(composite catalog) group imposed and unique layer title for same source',
url: '',
composite: [
{
id: 'tq_swtq',
url: 'https://geoegl.msp.gouv.qc.ca/apis/ws/swtq',
regFilters: ['zpegt'],
groupImpose: {id: 'zpegt', title: 'zpegt'}
},
{
id: 'Gououvert',
url: 'https://geoegl.msp.gouv.qc.ca/apis/ws/igo_gouvouvert.fcgi',
regFilters: ['zpegt'],
groupImpose: {id: 'zpegt', title: 'zpegt'}
},
{
id: 'Gououvert',
url: 'https://geoegl.msp.gouv.qc.ca/apis/ws/igo_gouvouvert.fcgi',
regFilters: ['zpegt'],
groupImpose: {id: 'zpegt', title: 'zpegt'}
},
{
id: 'rn_wmts',
url: 'https://servicesmatriciels.mern.gouv.qc.ca/erdas-iws/ogc/wmts/Cartes_Images',
type: 'wmts',
crossOrigin: true,
matrixSet: 'EPSG_3857',
version: '1.0.0',
groupImpose: {id: 'cartetopo', title: 'Carte topo échelle 1/20 000'}
}
]
},
{
id: 'tag_layernametitle',
title: '(composite catalog) tag source on same layer title',
url: '',
composite: [
{
id: 'tq_swtq',
url: 'https://geoegl.msp.gouv.qc.ca/apis/ws/swtq',
regFilters: ['limtn_charg'],
groupImpose: {id: 'mix_swtq_gouv', title: 'mix same name layer'}
},
{
id: 'Gououvert',
url: 'https://geoegl.msp.gouv.qc.ca/apis/ws/igo_gouvouvert.fcgi',
regFilters: ['limtn_charg'],
groupImpose: {id: 'mix_swtq_gouv', title: 'mix same name layer'}
}
]
}
]
},
Expand Down

0 comments on commit d67c718

Please sign in to comment.