C# Class Google.KML.geCoordinates

Represents the Coordinates property which contains minimally a Lat/Lon, and optionally an Altitude.
Inheritance: geObject
显示文件 Open project: akapetanovic/ASTERIX-ANALYSER-and-DATA-DISPLAY Class Usage Examples

Public Properties

Property Type Description
Altitude System.Single
Latitude geAngle90
Longitude geAngle180

Public Methods

Method Description
ToKML ( XmlTextWriter kml ) : void

Renders the object as KML, and calls upon any children to do the same

ToTuple ( ) : string

Returns only the Lon,Lat[,Alt] string without any KML elements

geCoordinates ( geAngle90 latitude, geAngle180 longitude ) : System

This constructor will pass to the Lat/Lon/Alt constructor assigning altitude the value of Single.NaN

geCoordinates ( geAngle90 latitude, geAngle180 longitude, System.Single altitude ) : System

Method Details

ToKML() public method

Renders the object as KML, and calls upon any children to do the same
public ToKML ( XmlTextWriter kml ) : void
kml System.Xml.XmlTextWriter
return void

ToTuple() public method

Returns only the Lon,Lat[,Alt] string without any KML elements
public ToTuple ( ) : string
return string

geCoordinates() public method

This constructor will pass to the Lat/Lon/Alt constructor assigning altitude the value of Single.NaN
public geCoordinates ( geAngle90 latitude, geAngle180 longitude ) : System
latitude geAngle90
longitude geAngle180
return System

geCoordinates() public method

public geCoordinates ( geAngle90 latitude, geAngle180 longitude, System.Single altitude ) : System
latitude geAngle90
longitude geAngle180
altitude System.Single
return System

Property Details

Altitude public_oe property

public Single,System Altitude
return System.Single

Latitude public_oe property

public geAngle90,Google.KML Latitude
return geAngle90

Longitude public_oe property

public geAngle180,Google.KML Longitude
return geAngle180