Package iofXml.v3
Class GeoPosition
-
- All Implemented Interfaces:
public class GeoPositionDefines a geographical position, e.g. of a control.
Java class for GeoPosition complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="GeoPosition"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="lng" use="required" type="{http://www.w3.org/2001/XMLSchema}double" /> <attribute name="lat" use="required" type="{http://www.w3.org/2001/XMLSchema}double" /> <attribute name="alt" type="{http://www.w3.org/2001/XMLSchema}double" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description GeoPosition()
-
Method Summary
Modifier and Type Method Description doublegetLng()The longitude. voidsetLng(double value)Sets the value of the lng property. doublegetLat()The latitude. voidsetLat(double value)Sets the value of the lat property. DoublegetAlt()The altitude (elevation above sea level), in meters. voidsetAlt(Double value)Sets the value of the alt property. -
-
Method Detail
-
getLng
double getLng()
The longitude.
-
setLng
void setLng(double value)
Sets the value of the lng property.
-
getLat
double getLat()
The latitude.
-
setLat
void setLat(double value)
Sets the value of the lat property.
-
getAlt
Double getAlt()
The altitude (elevation above sea level), in meters.
- Returns:
possibleobject is Double
-
-
-
-