IMapLocation.GeoPosition Property
Gets a location’s geographic position.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
string GeoPosition { get; }
Property Value
Type | Description |
---|---|
String | The geographic position. |
Remarks
The IMapLocation interface is used to get a location in MapClick and MarkerClick event handlers.
In the MapClick event handler, the
GeoPosition
property returnsnull
. Use Latitude and Longitude properties to get coordinates of the clicked location.In the MarkerClick event handler, the
GeoPosition
property returns a value of the marker’s DxMapLocation.GeoPosition property. If the marker location is specified by DxMapLocation.Latitude and DxMapLocation.Longitude properties,GeoPosition
returnnull
.
See Also