Android Open Source - LocationProvider Test Location






From Project

Back to project page LocationProvider.

License

The source code is released under:

Apache License

If you think the Android project LocationProvider 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.example.locationprovider;
/*ww  w. j  av  a 2s.c om*/
public class TestLocation {
    // Member fields
    public final double Latitude;
    public final double Longitude;
    public final float Accuracy;
    public final String Id;

    /**
     * Primary constructor. Create an object for a set of test location settings
     * @param id Identifies this location. Used as the test Location object's provider
     * @param latitude The test location's latitude
     * @param longitude The test location's longitude
     * @param accuracy The accuracy of the test location data
     */
    public TestLocation(String id, double latitude, double longitude, float accuracy) {

        Id = id;
        Latitude = latitude;
        Longitude = longitude;
        Accuracy = accuracy;
    }
    /**
     * Default constructor. Initialize everything to reasonable values.
     */
    public TestLocation() {

        Id = "test";
        Latitude = 34.413739;
        Longitude = -119.841148;
        Accuracy = 3.0f;
    }
}




Java Source Code List

com.example.locationprovider.LocationUtils.java
com.example.locationprovider.MainActivity.java
com.example.locationprovider.SendMockLocationService.java
com.example.locationprovider.TestLocation.java