Android Open Source - AU-Shuttle-Tracker-App Lat Lon Point






From Project

Back to project page AU-Shuttle-Tracker-App.

License

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.

Java Source Code

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));
      }
  
}




Java Source Code List

edu.american.student.AUBusTrackerActivity.java
edu.american.student.BlueRoute.java
edu.american.student.Bus.java
edu.american.student.DotMapOverlay.java
edu.american.student.RedRoute.java
edu.american.student.RouteOverlay.java
edu.american.student.ShareRoute.java
edu.american.student.util.GPSQueue.java
edu.american.student.util.HTTPObject.java
edu.american.student.util.LatLonPair.java
edu.american.student.util.LatLonPoint.java