Back to project page AndroidKMLParser.
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.
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; } }