Class
MapLocation

Represents a geographic coordinate with latitude and longitude values for map positioning and data visualization. Provides precise location data using standard decimal degree format for accurate map marker placement and spatial calculations.

Definition

Namespace:Telerik.Blazor.Components.Map

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class MapLocation

Inheritance: objectMapLocation

Constructors

MapLocation()

Declaration

cs-api-definition
public MapLocation()

Properties

Latitude

The north-south coordinate in decimal degrees, ranging from -90 (South Pole) to +90 (North Pole). Positive values indicate locations north of the equator, while negative values indicate locations south of the equator.

Declaration

cs-api-definition
public double Latitude { get; set; }

Property Value

double

Longitude

The east-west coordinate in decimal degrees, ranging from -180 to +180 degrees. Positive values indicate locations east of the Prime Meridian, while negative values indicate locations west of the Prime Meridian.

Declaration

cs-api-definition
public double Longitude { get; set; }

Property Value

double