-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
User can now zoom to a line segment as defined by a RouteID, Direction, (Begin) Milepost, (Begin) Back, End Milepost and End Back values via URL. refactor: ♻️ Add route segment CIM definitions refactor: ♻️ remove default export on layers/MilepostLayer/symbol chore: 🔨 create-cim script now adds primitive overrides refactor: 🔨 Refactor create-cim refactor: 🚚 Moved create-cim into src subfolder chore: 🔨 Restored script to create Milepost CIM The original script was moved and turned into a module. This new script calls this module, which does most of the work. refactor: ♻️ refactor milepost CIM definitions build: ⬆️ upgrade vite refactor: ♻️ simplify line symbol creation refactor: ♻️ Added end MP fields to line layer refactor: ♻️ add ability to read end MP refactor: 🚨 Removed unneeded eslint comment refactor: ♻️ Modifed types build: 🔧 Update pnpm build: ⬆️ upgrade dependencies refactor: Added end milepost controls refactor: 🚧 Add handling for end milepost in URLs refactor: 🚧 Milepost segments can now added from URL Need to modify renderer to show line segments with begin and end mileposts rather then ones showing where the user clicked to the milepost on the route. build: 📌 Specify v1.0.1 tag for WSDOT-GIS/wsdot-web-styles dependency refactor: ♻️ remove unused type import refactor: 🚧 Added symbol for route segments
- Loading branch information
1 parent
3475ddd
commit 86c93c4
Showing
22 changed files
with
976 additions
and
647 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -19,4 +19,4 @@ for (var f in match) { | |
return f.JURISDICT_LABEL_NM | ||
} | ||
|
||
return $userInput; | ||
// return $userInput; |
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,3 +1,9 @@ | ||
// import fromWebMercatorFunction from "./parts/fromWebMercator.function.arcade" | ||
|
||
webMercatorToWgs1984(Geometry($feature)) | ||
var featureGeometry = Geometry($feature); | ||
|
||
if (TypeOf(featureGeometry) == "Point") { | ||
webMercatorToWgs1984(Geometry($feature)) | ||
} else { | ||
webMercatorToWgs1984(Point($userInput)) | ||
} |
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.