Latitud: @_inspectorLat.ToString("0.000000")
Longitud: @_inspectorLon.ToString("0.000000")
- @if (!string.IsNullOrWhiteSpace(_inspectorCallejero))
- {
-
Callejero: @_inspectorCallejero
- }
-
Altitud (O):
@(_inspectorElev is null
? "-"
: _inspectorElev.Value.ToString("0.00", CultureInfo.InvariantCulture) + " m")
-
+
+ @for (var indiceLugar = 0; indiceLugar < _inspectorLugaresCercanos.Count; indiceLugar++)
+ {
+ var lugarCercano = _inspectorLugaresCercanos[indiceLugar];
+
+ @(indiceLugar + 1)
+ @FormatearLugarCallejeroResumen(lugarCercano)
+
+ }
+
+ }
+
+
+
- }
+ }
}
@@ -427,6 +438,11 @@
}
else
{
+