-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* schema config-layer start * Add real sample for esriFeature leaf and inside a group * add localize rule, layerfilter, move serviceDate * remove allMaps callback * refactor(clean): Remove cluster and heatmap from codebase (#2076) Closes #2075 Co-authored-by: jolevesq <[email protected]> * progress on link to api * rebase from local branch mistake to include remove allMaps * fix types issue * fix types * Remove triggerReadyCallback * rebase * fix comment * codeQL regex config --------- Co-authored-by: Johann Levesque <[email protected]>
- Loading branch information
Showing
59 changed files
with
1,851 additions
and
816 deletions.
There are no files selected for viewing
100 changes: 49 additions & 51 deletions
100
packages/geoview-core/public/configs/OSDP/osdp-land.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,50 @@ | ||
{ | ||
"map": { | ||
"interaction": "dynamic", | ||
"viewSettings": { | ||
"zoom": 8, | ||
"center": [-113, 57.5], | ||
"projection": 3978 | ||
}, | ||
"basemapOptions": { | ||
"basemapId": "transport", | ||
"shaded": true, | ||
"labeled": true | ||
}, | ||
"listOfGeoviewLayerConfig": [ | ||
{ | ||
"geoviewLayerId": "LYR1", | ||
"geoviewLayerName": { "en": "2010 Land Cover of Canada" }, | ||
"metadataAccessPath": { | ||
"en": "https://datacube.services.geo.ca/web/landcover.xml" | ||
}, | ||
"geoviewLayerType": "ogcWms", | ||
"listOfLayerEntryConfig": [ | ||
{ | ||
"layerId": "landcover-2010" | ||
} | ||
] | ||
}, | ||
{ | ||
"geoviewLayerId": "LYR2", | ||
"geoviewLayerName": { "en": "2015 Land Cover of Canada" }, | ||
"metadataAccessPath": { | ||
"en": "https://datacube.services.geo.ca/web/landcover.xml" | ||
}, | ||
"geoviewLayerType": "ogcWms", | ||
"listOfLayerEntryConfig": [ | ||
{ | ||
"layerId": "landcover-2015" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"components": ["north-arrow", "overview-map"], | ||
"footerBar": { | ||
"tabs": { | ||
"core": ["legend", "layers", "details", "data-table"] | ||
} | ||
}, | ||
"corePackages": [ "swiper"], | ||
"theme": "geo.ca", | ||
"suportedLanguages": ["en"] | ||
{ | ||
"map": { | ||
"interaction": "dynamic", | ||
"viewSettings": { | ||
"projection": 3978 | ||
}, | ||
"basemapOptions": { | ||
"basemapId": "transport", | ||
"shaded": true, | ||
"labeled": true | ||
}, | ||
"listOfGeoviewLayerConfig": [ | ||
{ | ||
"geoviewLayerId": "LYR1", | ||
"geoviewLayerName": { "en": "2010 Land Cover of Canada" }, | ||
"metadataAccessPath": { | ||
"en": "https://datacube.services.geo.ca/web/landcover.xml" | ||
}, | ||
"geoviewLayerType": "ogcWms", | ||
"listOfLayerEntryConfig": [ | ||
{ | ||
"layerId": "landcover-2010" | ||
} | ||
] | ||
}, | ||
{ | ||
"geoviewLayerId": "LYR2", | ||
"geoviewLayerName": { "en": "2015 Land Cover of Canada" }, | ||
"metadataAccessPath": { | ||
"en": "https://datacube.services.geo.ca/web/landcover.xml" | ||
}, | ||
"geoviewLayerType": "ogcWms", | ||
"listOfLayerEntryConfig": [ | ||
{ | ||
"layerId": "landcover-2015" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"components": ["north-arrow", "overview-map"], | ||
"footerBar": { | ||
"tabs": { | ||
"core": ["legend", "layers", "details", "data-table"] | ||
} | ||
}, | ||
"corePackages": [ "swiper"], | ||
"theme": "geo.ca", | ||
"suportedLanguages": ["en"] | ||
} |
49 changes: 49 additions & 0 deletions
49
packages/geoview-core/public/configs/navigator/25-geojoson-multi.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"map": { | ||
"interaction": "dynamic", | ||
"viewSettings": { | ||
"projection": 3978 | ||
}, | ||
"basemapOptions": { | ||
"basemapId": "transport", | ||
"shaded": true, | ||
"labeled": false | ||
}, | ||
"listOfGeoviewLayerConfig": [ | ||
{ | ||
"geoviewLayerId": "geojsonLYR1", | ||
"geoviewLayerName": { "en": "GeoJSON Sample" }, | ||
"metadataAccessPath": { "en": "./datasets/geojson/metadata1.json" }, | ||
"geoviewLayerType": "GeoJSON", | ||
"listOfLayerEntryConfig": [ | ||
{ | ||
"layerId": "projects.json", | ||
"layerName": { "en": "Projects" } | ||
} | ||
] | ||
}, | ||
{ | ||
"geoviewLayerId": "geojsonLYR2", | ||
"geoviewLayerName": { "en": "MultiPolygon Sample" }, | ||
"metadataAccessPath": { "en": "./datasets/geojson/metadata.json" }, | ||
"geoviewLayerType": "GeoJSON", | ||
"listOfLayerEntryConfig": [ | ||
{ | ||
"layerId": "multipolygons.geojson", | ||
"layerName": { "en": "MultiPolygon" } | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"components": ["overview-map"], | ||
"overviewMap": {"hideOnZoom": 7}, | ||
"footerBar": { | ||
"tabs": { | ||
"core": ["legend", "layers", "details", "data-table"] | ||
} | ||
}, | ||
"corePackages": [], | ||
"theme": "geo.ca", | ||
"suportedLanguages": ["en"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.