C# Class Engage.Dnn.Locator.JavaScript.Location

A JSON-friendly representation of a location
Show file Open project: EngageSoftware/Engage-Locator

Public Properties

Property Type Description
Address string
Latitude double?
Longitude double?

Public Methods

Method Description
Location ( double latitude, double longitude, string address )

Initializes a new instance of the Location struct.

Method Details

Location() public method

Initializes a new instance of the Location struct.
public Location ( double latitude, double longitude, string address )
latitude double The latitude of the location.
longitude double The longitude of the location.
address string The address of the location.

Property Details

Address public property

The address of this location
public string Address
return string

Latitude public property

The latitude of this location
public double? Latitude
return double?

Longitude public property

The longitude of this location
public double? Longitude
return double?