Skip to content

MapCoordinate

Type ISIAPIMapCoordinate · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 94D6A286-EDD1-4B53-B777-C74D9BED9909

Declaration

[Guid("94D6A286-EDD1-4B53-B777-C74D9BED9909")]
public interface ISIAPIMapCoordinate

Members

Properties

Property Type Summary
Latitude double
Longitude double

Properties

Latitude

double Latitude { get; set; }

Type double

Code samples
double latitude = mapCoordinate.Latitude;
mapCoordinate.Latitude = 0.0;
double latitude;
mapCoordinate->get_Latitude(&latitude);
mapCoordinate->put_Latitude(0.0);
latitude = mapCoordinate.Latitude
mapCoordinate.Latitude = 0.0
$latitude = $mapCoordinate.Latitude
$mapCoordinate.Latitude = 0.0

Longitude

double Longitude { get; set; }

Type double

Code samples
double longitude = mapCoordinate.Longitude;
mapCoordinate.Longitude = 0.0;
double longitude;
mapCoordinate->get_Longitude(&longitude);
mapCoordinate->put_Longitude(0.0);
longitude = mapCoordinate.Longitude
mapCoordinate.Longitude = 0.0
$longitude = $mapCoordinate.Longitude
$mapCoordinate.Longitude = 0.0