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