Back to project page NVS.
The source code is released under:
Apache License
If you think the Android project NVS 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.jmuenster.extras; /* ww w .j av a2s .co m*/ import com.google.android.maps.GeoPoint; /** * @author Julian Muenster * */ public class Point { private GeoPoint geoPoint; private double altitude; public Point(GeoPoint gp, double al) { this.geoPoint = gp; this.altitude = al; } public GeoPoint getGeoPoint() { return geoPoint; } public void setGeoPoint(GeoPoint geoPoint) { this.geoPoint = geoPoint; } public double getAltitude() { return altitude; } public void setAltitude(double altitude) { this.altitude = altitude; } }