Package iofXml.v3

Class GeoPosition

java.lang.Object
iofXml.v3.GeoPosition

public class GeoPosition extends Object
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>
 
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected Double
    The altitude (elevation above sea level), in meters.
    protected double
    The latitude.
    protected double
    The longitude.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    The altitude (elevation above sea level), in meters.
    double
    The latitude.
    double
    The longitude.
    void
    setAlt(Double value)
    Sets the value of the alt property.
    void
    setLat(double value)
    Sets the value of the lat property.
    void
    setLng(double value)
    Sets the value of the lng property.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • lng

      protected double lng
      The longitude.
    • lat

      protected double lat
      The latitude.
    • alt

      protected Double alt
      The altitude (elevation above sea level), in meters.
  • Constructor Details

    • GeoPosition

      public GeoPosition()
  • Method Details

    • getLng

      public double getLng()
      The longitude.
    • setLng

      public void setLng(double value)
      Sets the value of the lng property.
    • getLat

      public double getLat()
      The latitude.
    • setLat

      public void setLat(double value)
      Sets the value of the lat property.
    • getAlt

      public Double getAlt()
      The altitude (elevation above sea level), in meters.
      Returns:
      possible object is Double
    • setAlt

      public void setAlt(Double value)
      Sets the value of the alt property.
      Parameters:
      value - allowed object is Double
      See Also: