IMapLocation.Longitude Property
Gets a location’s longitude.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.1.dll
NuGet Package: DevExpress.Blazor
Declaration
double Longitude { get; }
Property Value
| Type | Description |
|---|---|
| Double | The longitude value. |
Remarks
The IMapLocation interface is used to get a location in MapClick and MarkerClick event handlers.
In the MapClick event handler, use Latitude and
Longitudeproperties to get coordinates of the clicked location.In the MarkerClick event handler, Latitude and
Longitudeproperties return coordinates of the clicked marker, provided the marker location is specified by DxMapLocation.Latitude and DxMapLocation.Longitude properties. If the marker location is specified by the GeoPosition property, Latitude andLongitudereturn0.
See Also