-
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.
Merge pull request #1825 from jolevesq/1817-osdp
feature(demo): Add demo for OSDP configuration (#1825) Co-Authored-By: jolevesq <[email protected]>
- Loading branch information
Showing
36 changed files
with
1,405 additions
and
332 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
packages/geoview-core/public/configs/OSDP/osdp-land-swiper.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,10 @@ | ||
{ | ||
"orientation": "vertical", | ||
"keyboardOffset": 10, | ||
"layers": [ | ||
"LYR1" | ||
], | ||
"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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"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"] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ html { | |
body { | ||
margin: 0; | ||
padding: 50px; | ||
background-color: #ffffff !important; | ||
} | ||
|
||
td { | ||
|
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,76 +1,74 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title> | ||
<%= htmlWebpackPlugin.options.title %> | ||
</title> | ||
<link rel="shortcut icon" href="./favicon.ico" /> | ||
<link rel="stylesheet" href="css/style.css" /> | ||
<link href="https://fonts.googleapis.com/css?family=Roboto|Montserrat:200,300,400,900|Merriweather" rel="stylesheet" | ||
type="text/css" /> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<img class="center-logo header-logo" alt="logo" src="./img/Logo.png" /> | ||
<h1 class="index-header-title"><strong>Plateforme Géospatiale Canadienne (PGC) - Projet GeoView -</strong></h1> | ||
<h1 class="index-header-title"><strong>Canadian Geospatial Platform (CGP) - GeoView Project -</strong></h1> | ||
<hr /> | ||
<hr /> | ||
<br /> | ||
<br /> | ||
<h4>Sandbox</h4> | ||
<a class="page-link" href="./sandbox.html">Sandbox</a> | ||
<h4>Basic Maps</h4> | ||
<a class="page-link" href="./use-cases.html">Use Cases</a> | ||
<a class="page-link" href="./basemaps.html">Basemaps</a> | ||
<a class="page-link" href="./projections.html">Projections</a> | ||
<a class="page-link" href="./languages.html">Languages</a> | ||
<h4>Basic Raw Components</h4> | ||
<a class="page-link" href="./raw-feature-info.html">Basic Details</a> | ||
<a class="page-link" href="./raw-data-table.html">Basic Data Table</a> | ||
<a class="page-link" href="./raw-add-layers.html">Basic Add Layers</a> | ||
<a class="page-link" href="./raw-app-bar.html">Basic App Bar Tabs</a> | ||
<h4>Basic Loading</h4> | ||
<a class="page-link" href="./default-config.html">Default Configuration</a> | ||
<a class="page-link" | ||
href="./api-loads.html?geoms=000183ed-8864-42f0-ae43-c4313a860720,0083baf1-8145-4207-a84f-3d85ef2943a5">API | ||
loads</a> | ||
<a class="page-link" href="./type-of-layers.html">Type Of Layers</a> | ||
<a class="page-link" href="./pygeoapi-processes.html">pygeoapi process</a> | ||
<a class="page-link" href="./layers-temporal.html">Layers - Temporal</a> | ||
<h4>Internal Package</h4> | ||
<a class="page-link" href="./loading-packages.html">Loading Packages</a> | ||
<a class="page-link" href="./package-basemap-panel.html">Package - Basemap Panel</a> | ||
<a class="page-link" href="./package-swiper.html">Package - Swiper</a> | ||
<a class="page-link" href="./package-time-slider.html">Package - Time Slider</a> | ||
<a class="page-link" href="./package-geochart.html">Package - GeoChart</a> | ||
<a class="page-link" href="./package-footer-panel-geochart.html">Package - GeoChart (footer)</a> | ||
<h4>API and Events</h4> | ||
<a class="page-link" href="./api-functions-test.html">API Functions Test</a> | ||
<a class="page-link" href="./events.html">Events</a> | ||
<a class="page-link" href="./add-panels.html">Add Panels</a> | ||
<a class="page-link" href="./geometry.html">Geometry</a> | ||
<a class="page-link" href="./footer-bar.html">Footer bar (vanilla JS)</a> | ||
<h4>UI Components</h4> | ||
<a class="page-link" href="./ui-components.html">UI Components</a> | ||
<a class="page-link" href="./theme-switching.html">Theme Switching</a> | ||
<h4>Interactions</h4> | ||
<a class="page-link" href="./inter-all.html">Interactions (all-in)</a> | ||
<a class="page-link" href="./inter-select.html">Select</a> | ||
<a class="page-link" href="./inter-draw.html">Draw</a> | ||
<a class="page-link" href="./inter-modify.html">Modify</a> | ||
<a class="page-link" href="./inter-translate.html">Translate</a> | ||
<a class="page-link" href="./inter-snap.html">Snap</a> | ||
<a class="page-link" href="./inter-extent.html">Extent</a> | ||
<h4>Other</h4> | ||
<a class="page-link" href="./responsive_page.html">Responsive Page</a> | ||
<a class="page-link" href="./load-test.html">Performance Test</a> | ||
<a class="page-link" href="./cgdi-demo.html">CGDI Demo</a> | ||
</div> | ||
</body> | ||
|
||
</html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title> | ||
<%= htmlWebpackPlugin.options.title %> | ||
</title> | ||
<link rel="shortcut icon" href="./favicon.ico" /> | ||
<link rel="stylesheet" href="css/style.css" /> | ||
<link href="https://fonts.googleapis.com/css?family=Roboto|Montserrat:200,300,400,900|Merriweather" rel="stylesheet" | ||
type="text/css" /> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<img class="center-logo header-logo" alt="logo" src="./img/Logo.png" /> | ||
<h1 class="index-header-title"><strong>Plateforme Géospatiale Canadienne (PGC) - Projet GeoView -</strong></h1> | ||
<h1 class="index-header-title"><strong>Canadian Geospatial Platform (CGP) - GeoView Project -</strong></h1> | ||
<hr /> | ||
<hr /> | ||
<br /> | ||
<br /> | ||
<h4>Sandbox</h4> | ||
<a class="page-link" href="./sandbox.html">Sandbox</a> | ||
<h4>Basic Maps</h4> | ||
<a class="page-link" href="./use-cases.html">Use Cases</a> | ||
<a class="page-link" href="./basemaps.html">Basemaps</a> | ||
<a class="page-link" href="./projections.html">Projections</a> | ||
<a class="page-link" href="./languages.html">Languages</a> | ||
<h4>Basic Raw Components</h4> | ||
<a class="page-link" href="./raw-feature-info.html">Basic Details</a> | ||
<a class="page-link" href="./raw-add-layers.html">Basic Add Layers</a> | ||
<a class="page-link" href="./raw-app-bar.html">Basic App Bar Tabs</a> | ||
<h4>Basic Loading</h4> | ||
<a class="page-link" href="./default-config.html">Default Configuration</a> | ||
<a class="page-link" href="./api-loads.html?geoms=000183ed-8864-42f0-ae43-c4313a860720,0083baf1-8145-4207-a84f-3d85ef2943a5" | ||
>API loads</a | ||
> | ||
<a class="page-link" href="./type-of-layers.html">Type Of Layers</a> | ||
<a class="page-link" href="./pygeoapi-processes.html">pygeoapi process</a> | ||
<a class="page-link" href="./layers-temporal.html">Layers - Temporal</a> | ||
<h4>Internal Package</h4> | ||
<a class="page-link" href="./loading-packages.html">Loading Packages</a> | ||
<a class="page-link" href="./package-basemap-panel.html">Package - Basemap Panel</a> | ||
<a class="page-link" href="./package-swiper.html">Package - Swiper</a> | ||
<a class="page-link" href="./package-time-slider.html">Package - Time Slider</a> | ||
<a class="page-link" href="./package-geochart.html">Package - GeoChart</a> | ||
<a class="page-link" href="./package-footer-panel-geochart.html">Package - GeoChart (footer)</a> | ||
<h4>API and Events</h4> | ||
<a class="page-link" href="./api-functions-test.html">API Functions Test</a> | ||
<a class="page-link" href="./events.html">Events</a> | ||
<a class="page-link" href="./add-panels.html">Add Panels</a> | ||
<a class="page-link" href="./geometry.html">Geometry</a> | ||
<a class="page-link" href="./footer-bar.html">Footer bar (vanilla JS)</a> | ||
<h4>UI Components</h4> | ||
<a class="page-link" href="./ui-components.html">UI Components</a> | ||
<a class="page-link" href="./theme-switching.html">Theme Switching</a> | ||
<h4>Interactions</h4> | ||
<a class="page-link" href="./inter-all.html">Interactions (all-in)</a> | ||
<a class="page-link" href="./inter-select.html">Select</a> | ||
<a class="page-link" href="./inter-draw.html">Draw</a> | ||
<a class="page-link" href="./inter-modify.html">Modify</a> | ||
<a class="page-link" href="./inter-translate.html">Translate</a> | ||
<a class="page-link" href="./inter-snap.html">Snap</a> | ||
<a class="page-link" href="./inter-extent.html">Extent</a> | ||
<h4>Demos</h4> | ||
<a class="page-link" href="./demos.html">Specific Demos Pages</a> | ||
<h4>Other</h4> | ||
<a class="page-link" href="./responsive_page.html">Responsive Page</a> | ||
<a class="page-link" href="./load-test.html">Performance Test</a> | ||
</div> | ||
</body> | ||
</html> |
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.