New to Telerik UI for BlazorStart a free 30-day trial

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:

C#
public class MapLocation

Inheritance: objectMapLocation

Constructors

C#
public MapLocation()

Properties

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.

C#
public double Latitude { get; set; }

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.

C#
public double Longitude { get; set; }