-
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.
🏹 Implement Shuttle Route KML Visualization (#996)
* update libraries and fix test/config in prep for adding map lib * add react-leaflet/leaflet and add basic map view to relevant shape pages * remove comment * fix integration test * add initial shape visualization * add colors for different shape polylines and add end markers * TEMP * Revert "TEMP" This reverts commit c8b7e13. * format, lint, add layer selection for shape lines * improve layer selector * address pr comments
- Loading branch information
Showing
7 changed files
with
208 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ | |
@import "./header.css"; | ||
@import "./icon.css"; | ||
@import "./notes.css"; | ||
@import "./shapes.css"; |
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 @@ | ||
.legend-square { | ||
height: 1rem; | ||
width: 1rem; | ||
display: inline-block; | ||
} | ||
|
||
.color-da291c { | ||
background-color: #da291c; | ||
} | ||
|
||
.color-003da5 { | ||
background-color: #003da5; | ||
} | ||
|
||
.color-ffc72c { | ||
background-color: #ffc72c; | ||
} | ||
|
||
.color-00843d { | ||
background-color: #00843d; | ||
} | ||
|
||
.color-ed8b00 { | ||
background-color: #ed8b00; | ||
} | ||
|
||
.color-7c878e { | ||
background-color: #7c878e; | ||
} | ||
|
||
.color-494f5c { | ||
background-color: #494f5c; | ||
} | ||
|
||
.color-003383 { | ||
background-color: #003383; | ||
} | ||
|
||
.color-80276c { | ||
background-color: #80276c; | ||
} | ||
|
||
.color-008eaa { | ||
background-color: #008eaa; | ||
} | ||
|
||
.color-52bbc5 { | ||
background-color: #52bbc5; | ||
} |
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