1 write to LatitudeDegrees
Microsoft.Maui.Maps (1)
Primitives\MapSpan.cs (1)
14
LatitudeDegrees
= Math.Min(Math.Max(latitudeDegrees, MinimumRangeDegrees), 90.0);
8 references to LatitudeDegrees
Microsoft.Maui.Maps (8)
Handlers\Map\MapHandler.iOS.cs (1)
104
var mapRegion = new MKCoordinateRegion(new CLLocationCoordinate2D(center.Latitude, center.Longitude), new MKCoordinateSpan(mapSpan.
LatitudeDegrees
, mapSpan.LongitudeDegrees));
Primitives\MapSpan.cs (7)
28
double latKm = LatitudeDegreesToKm(
LatitudeDegrees
);
40
return new MapSpan(new Location(lat, Center.Longitude), Math.Min(
LatitudeDegrees
, maxDLat), LongitudeDegrees);
63
hashCode = (hashCode * 397) ^
LatitudeDegrees
.GetHashCode();
81
return new MapSpan(Center, Math.Min(
LatitudeDegrees
/ zoomFactor, maxDLat), LongitudeDegrees / zoomFactor);
97
return Center.Equals(other.Center) && LongitudeDegrees.Equals(other.LongitudeDegrees) &&
LatitudeDegrees
.Equals(other.
LatitudeDegrees
);
118
return $"{Center}, {
LatitudeDegrees
}, {LongitudeDegrees}";