-
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.
Symbology/restore srmp to marker label (#498)
* fix: 🐛 user click marker does not show milepost, only route * refactor: include alpha in highwaySignBackgroundColor * chore: move ArcGIS Pro project * chore: modify ArcGIS Pro symbology * feat: remove route name from label fixes #74455
- Loading branch information
1 parent
28c3d39
commit 996f4c5
Showing
12 changed files
with
47 additions
and
34 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
Binary file not shown.
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,6 +1,14 @@ | ||
var showEnd = HasKey($feature, "EndSrmp") && $feature.SRMP > $feature.EndSrmp | ||
Console("beginOverride.arcade begins") | ||
|
||
IIf(showEnd, | ||
`${$feature.Route}\n${$feature.EndSrmp}${$feature.EndBack}`, | ||
`${$feature.Route}\n${$feature.SRMP}${$feature.Back}` | ||
) | ||
Console($feature); | ||
|
||
var showEnd = HasKey($feature, "EndSrmp") && $feature.EndSrmp != null && $feature.Srmp > $feature.EndSrmp; | ||
|
||
var srmp = IIf(showEnd, $feature.EndSrmp, $feature.Srmp); | ||
var back = IIf(showEnd, $feature.EndBack, $feature.Back); | ||
|
||
|
||
var output = `${Text(srmp, "#.##")}${back}`; | ||
|
||
Console("beginOverride.arcade ends") | ||
return output; |
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