Back to project page AU-Shuttle-Tracker-App.
The source code is released under:
GNU General Public License
If you think the Android project AU-Shuttle-Tracker-App 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 edu.american.student.util; /* w ww . jav a 2s . co m*/ import com.google.android.maps.GeoPoint; /** * This class allows you to use lat long instead of google's bullshit * @author Cam Cook * */ public class LatLonPoint extends GeoPoint { public LatLonPoint(double latitude, double longitude) { super((int) (latitude * 1E6), (int) (longitude * 1E6)); } }