Skip to content

Commit

Permalink
restored route to milepost label
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffJacobson committed Jan 21, 2025
1 parent 1fb3ec0 commit a368034
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/layers/MilepostLayer/symbol/beginOverride.arcade
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ var showEnd = HasKey($feature, "EndSrmp") && $feature.EndSrmp != null && $featur
var srmp = IIf(showEnd, $feature.EndSrmp, $feature.Srmp);
var back = IIf(showEnd, $feature.EndBack, $feature.Back);

var output = `${$feature.Route}\n${Text(srmp, "#.##")}${back}`;


var output = `${Text(srmp, "#.##")}${back}`;

Console("beginOverride.arcade ends")
return output;

0 comments on commit a368034

Please sign in to comment.