-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate from OpenLayers to MapLibre GL (#63)
* Partially working maplibre-gl implementation * Rename server map layers to dataset layers * Fix basic rendering issues * Fix active layer ordering * Fix opacity rendering * Remove use of DatasetLayer.openlayer * Fix updateBaseLayer and clearMapLayers * Place toggled layer on top if not created * Improve types * Correctly display vector layer points * Display region datasets correctly * Clean up unnecessary code and fix type issues * Simplify layer creation * Fix map click handler * Fix zoom to region button * Remove region grouping functionality in map tooltip * Apply style changes to all dataset layers by default * Fix circle layer opacity issue * Improve line and circle rendering * Fix raster and tooltip display * Consolidate tooltip manipulation code * Clean up raster colormap code * Fix layout of zoom to region button * Enable network and GCC features * Remove references to openlayers * Use OSM instead of map tiler * Fix linting errors * Ensure map layers are fetched in sorted order * Fix bug in raster tile request param construction * Remove unused and commented out code * Ignore and add TODO to non-null assertion * Remove nested array in network endpoint * Add comment to explain unavoidable error * Fix bug with reset network button * Show raster and flood map layers in simulations panel * Add ts-ignore statements * Remove TODOs
- Loading branch information
Showing
23 changed files
with
12,786 additions
and
12,174 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
VUE_APP_OAUTH_CLIENT_ID=cBmD6D6F2YAmMWHNQZFPUr4OpaXVpW5w4Thod6Kj | ||
VUE_APP_API_ROOT=http://localhost:8000/api/v1 | ||
VUE_APP_OAUTH_API_ROOT=http://localhost:8000/oauth/ |
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ node_modules | |
# local env files | ||
.env.local | ||
.env.*.local | ||
.env | ||
|
||
# Log files | ||
npm-debug.log* | ||
|
Oops, something went wrong.