StreetName
Version: - stringSummary
Returns Street Name of the point.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("StreetName")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("StreetName"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("StreetName");
}
Outputting the template tag
<!--@StreetName-->
Check if string has a value
<!--@If Defined(@StreetName)-->
Let's output this tag here: <strong><!--@StreetName--></strong>
<!--@EndIf(@StreetName)-->