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