Back to project page MultiLocation.
The source code is released under:
Apache License
If you think the Android project MultiLocation 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.example.owner; // www .ja v a2 s. com public class LagLng { private int locationServiceType; private double latitude; private double longitude; public int getLocationServiceType() { return locationServiceType; } public void setLocationServiceType(int locationServiceType) { this.locationServiceType = locationServiceType; } public double getLatitude() { return latitude; } public void setLatitude(double latitude) { this.latitude = latitude; } public double getLongitude() { return longitude; } public void setLongitude(double longitude) { this.longitude = longitude; } }