6 writes to Longitude
Microsoft.Maui.Essentials (6)
Types\Location.shared.cs (4)
73 Longitude = longitude; 75 Longitude -= 360; 77 Longitude += 360; 104 Longitude = point.Longitude;
Types\LocationExtensions.ios.tvos.watchos.macos.cs (2)
18 Longitude = placemark.Location.Coordinate.Longitude, 32 Longitude = location.Coordinate.Longitude,
19 references to Longitude
Microsoft.Maui.Essentials (15)
Geocoding\Geocoding.shared.cs (1)
104 return geocoding.GetPlacemarksAsync(location.Latitude, location.Longitude);
Map\Map.shared.cs (2)
211 return map.OpenAsync(location.Latitude, location.Longitude, options); 242 return map.TryOpenAsync(location.Latitude, location.Longitude, options);
Types\Location.shared.cs (12)
74 while (Longitude > 180) 76 while (Longitude <= -180) 104 Longitude = point.Longitude; 187 CalculateDistance(latitudeStart, longitudeStart, locationEnd.Latitude, locationEnd.Longitude, units); 198 CalculateDistance(locationStart.Latitude, locationStart.Longitude, latitudeEnd, longitudeEnd, units); 208 CalculateDistance(locationStart.Latitude, locationStart.Longitude, locationEnd.Latitude, locationEnd.Longitude, units); 243 $"{nameof(Longitude)}: {Longitude}, " + 259 return Latitude == other.Latitude && Longitude == other.Longitude; 268 hashCode = (hashCode * 397) ^ Longitude.GetHashCode();
Microsoft.Maui.Maps (4)
Primitives\Distance.cs (2)
58 var longitude1 = position1.Longitude.ToRadians(); 61 var longitude2 = position2.Longitude.ToRadians();
Primitives\GeographyUtils.cs (1)
20 double centerLongitude = circle.Center.Longitude.ToRadians();
Primitives\MapSpan.cs (1)
40 return new MapSpan(new Location(lat, Center.Longitude), Math.Min(LatitudeDegrees, maxDLat), LongitudeDegrees);