Skip to content

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

Get an instance

// Navigate to the ISIAPIMapCoordinate you need via the ISIAPI tree.
// See ISIAPI for the activation root.
var mapCoordinate = /* ... */;
' Navigate to the ISIAPIMapCoordinate you need via the ISIAPI tree.
' See ISIAPI for the activation root.
Dim mapCoordinate As ISIAPIMapCoordinate = Nothing
# Navigate to the ISIAPIMapCoordinate you need via the ISIAPI tree.
# See ISIAPI for the activation root.
mapCoordinate = ...
# Navigate to the ISIAPIMapCoordinate you need via the ISIAPI tree.
# See ISIAPI for the activation root.
$mapCoordinate = $null

Properties

Latitude

double Latitude { get; set; }

Type double

Code samples
double latitude = mapCoordinate.Latitude;
mapCoordinate.Latitude = 0.0;
Dim latitude As Double = mapCoordinate.Latitude
mapCoordinate.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;
Dim longitude As Double = mapCoordinate.Longitude
mapCoordinate.Longitude = 0.0
longitude = mapCoordinate.Longitude
mapCoordinate.Longitude = 0.0
$longitude = $mapCoordinate.Longitude
$mapCoordinate.Longitude = 0.0