Package iofXml.v3
Class GeoPosition
-
- All Implemented Interfaces:
public class GeoPosition
Defines 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 double
getLng()
The longitude. void
setLng(double value)
Sets the value of the lng property. double
getLat()
The latitude. void
setLat(double value)
Sets the value of the lat property. Double
getAlt()
The altitude (elevation above sea level), in meters. void
setAlt(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
-
-
-
-