Android Open Source - AndroidKMLParser Point






From Project

Back to project page AndroidKMLParser.

License

The source code is released under:

MIT License

If you think the Android project AndroidKMLParser listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.vashisthg.androidkml;
//from  ww w.j a  v  a 2  s .  c o  m
/**
 * Created by vashisthg on 23/03/14.
 */
public class Point {
    private double longitude;
    private double latitude;
    private double height;

    public double getLatitude() {
        return latitude;
    }

    public void setLatitude(double latitude) {
        this.latitude = latitude;
    }

    public double getHeight() {
        return height;
    }

    public void setHeight(double height) {
        this.height = height;
    }

    public double getLongitude() {

        return longitude;
    }

    public void setLongitude(double longitude) {
        this.longitude = longitude;
    }
}




Java Source Code List

com.vashisthg.androidkml.KmlReader.java
com.vashisthg.androidkml.Placemark.java
com.vashisthg.androidkml.Point.java
com.vashisthg.androidkmlsample.KMLActivity.java