minafaw3

GPSTracker

Apr 12th, 2017
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.48 KB | None | 0 0
  1. using Android.App;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Android.Content;
  8. using Android.OS;
  9. using Android.Locations;
  10. using Android.Runtime;
  11. using Android.Util;
  12. using Java.Util;
  13. using Java.IO;
  14.  
  15. namespace DSP.Droid
  16. {
  17. [Service]
  18. public class GPSTracker : Service , ILocationListener
  19. {
  20.  
  21. private static string TAG = "GPSTracker";
  22.  
  23. private Context mContext;
  24.  
  25. // flag for GPS Status
  26. bool isGPSEnabled = false;
  27.  
  28. // flag for network status
  29. bool isNetworkEnabled = false;
  30.  
  31. // flag for GPS Tracking is enabled
  32. bool isGPSTrackingEnabled = false;
  33.  
  34. Location location;
  35. double latitude;
  36. double longitude;
  37.  
  38. // How many Geocoder should return our GPSTracker
  39. int geocoderMaxResults = 1;
  40.  
  41. // The minimum distance to change updates in meters
  42. private static long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters
  43.  
  44. // The minimum time between updates in milliseconds
  45. private static long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute
  46.  
  47. // Declaring a Location Manager
  48. protected LocationManager locationManager;
  49.  
  50. // Store LocationManager.GPS_PROVIDER or LocationManager.NETWORK_PROVIDER information
  51. private string provider_info;
  52.  
  53. public GPSTracker(Context context)
  54. {
  55. this.mContext = context;
  56. getLocation();
  57. }
  58.  
  59. /**
  60. * Try to get my current location by GPS or Network Provider
  61. */
  62. public void getLocation()
  63. {
  64.  
  65. try
  66. {
  67. locationManager = (LocationManager)mContext.GetSystemService(LocationService);
  68.  
  69. //getting GPS status
  70. isGPSEnabled = locationManager.IsProviderEnabled(LocationManager.GpsProvider);
  71.  
  72. //getting network status
  73. isNetworkEnabled = locationManager.IsProviderEnabled(LocationManager.NetworkProvider);
  74.  
  75. // Try to get location if you GPS Service is enabled
  76. if (isGPSEnabled)
  77. {
  78. this.isGPSTrackingEnabled = true;
  79.  
  80. Log.Debug(TAG, "Application use GPS Service");
  81.  
  82. /*
  83. * This provider determines location using
  84. * satellites. Depending on conditions, this provider may take a while to return
  85. * a location fix.
  86. */
  87.  
  88. provider_info = LocationManager.GpsProvider;
  89.  
  90. }
  91. else if (isNetworkEnabled)
  92. { // Try to get location if you Network Service is enabled
  93. this.isGPSTrackingEnabled = true;
  94.  
  95. Log.Debug(TAG, "Application use Network State to get GPS coordinates");
  96.  
  97. /*
  98. * This provider determines location based on
  99. * availability of cell tower and WiFi access points. Results are retrieved
  100. * by means of a network lookup.
  101. */
  102. provider_info = LocationManager.NetworkProvider;
  103.  
  104. }
  105.  
  106. // Application can use GPS or Network Provider
  107. if (!string.IsNullOrEmpty(provider_info))
  108. {
  109. locationManager.RequestLocationUpdates(
  110. provider_info,
  111. MIN_TIME_BW_UPDATES,
  112. MIN_DISTANCE_CHANGE_FOR_UPDATES,
  113. this
  114. );
  115.  
  116. if (locationManager != null)
  117. {
  118. location = locationManager.GetLastKnownLocation(provider_info);
  119. updateGPSCoordinates();
  120. }
  121. }
  122. }
  123. catch (Exception e)
  124. {
  125. //e.printStackTrace();
  126. Log.Error(TAG, "Impossible to connect to LocationManager", e);
  127. }
  128. }
  129.  
  130. /**
  131. * Update GPSTracker latitude and longitude
  132. */
  133. public void updateGPSCoordinates()
  134. {
  135. if (location != null)
  136. {
  137. latitude = location.Latitude;
  138. longitude = location.Longitude;
  139. }
  140. }
  141.  
  142. /**
  143. * GPSTracker latitude getter and setter
  144. * @return latitude
  145. */
  146. public double getLatitude()
  147. {
  148. if (location != null)
  149. {
  150. latitude = location.Latitude;
  151. }
  152.  
  153. return latitude;
  154. }
  155.  
  156. /**
  157. * GPSTracker longitude getter and setter
  158. * @return
  159. */
  160. public double getLongitude()
  161. {
  162. if (location != null)
  163. {
  164. longitude = location.Longitude;
  165. }
  166.  
  167. return longitude;
  168. }
  169.  
  170. /**
  171. * GPSTracker isGPSTrackingEnabled getter.
  172. * Check GPS/wifi is enabled
  173. */
  174. public bool getIsGPSTrackingEnabled()
  175. {
  176.  
  177. return this.isGPSTrackingEnabled;
  178. }
  179.  
  180. /**
  181. * Stop using GPS listener
  182. * Calling this method will stop using GPS in your app
  183. */
  184. public void stopUsingGPS()
  185. {
  186. if (locationManager != null)
  187. {
  188. locationManager.RemoveUpdates(this);
  189. }
  190. }
  191.  
  192. /**
  193. * Function to show settings alert dialog
  194. */
  195. public void showSettingsAlert()
  196. {
  197. AlertDialog.Builder alertDialog = new AlertDialog.Builder(mContext);
  198.  
  199. //Setting Dialog Title
  200. alertDialog.SetTitle(Resource.String.GPSAlertDialogTitle);
  201.  
  202. //Setting Dialog Message
  203. alertDialog.SetMessage(Resource.String.GPSAlertDialogMessage);
  204.  
  205. //On Pressing Setting button
  206. alertDialog.SetPositiveButton(Resource.String.setting , (senderAlert, args) => {
  207.  
  208. Intent intent = new Intent(Android.Provider.Settings.ActionLocationSourceSettings);
  209. StartActivity(intent);
  210. });
  211.  
  212. //On pressing cancel button
  213. alertDialog.SetNegativeButton(Resource.String.cancel, (senderAlert, args) => {
  214. ((Dialog)senderAlert).Cancel();
  215.  
  216. });
  217.  
  218. alertDialog.Show();
  219. }
  220.  
  221. /**
  222. * Get list of address by latitude and longitude
  223. * @return null or List<Address>
  224. */
  225. public IList<Address> getGeocoderAddress(Context context)
  226. {
  227. if (location != null)
  228. {
  229.  
  230. Geocoder geocoder = new Geocoder(context, Locale.English);
  231.  
  232. try
  233. {
  234. /**
  235. * Geocoder.getFromLocation - Returns an array of Addresses
  236. * that are known to describe the area immediately surrounding the given latitude and longitude.
  237. */
  238. IList<Address> addresses = geocoder.GetFromLocation(latitude, longitude, geocoderMaxResults);
  239.  
  240. return addresses;
  241. }
  242. catch (IOException e)
  243. {
  244. //e.printStackTrace();
  245. Log.Error(TAG, "Impossible to connect to Geocoder", e);
  246. }
  247. }
  248.  
  249. return null;
  250. }
  251.  
  252. /**
  253. * Try to get AddressLine
  254. * @return null or addressLine
  255. */
  256. public string getAddressLine(Context context)
  257. {
  258. IList<Address> addresses = getGeocoderAddress(context);
  259.  
  260. if (addresses != null && addresses.Count > 0)
  261. {
  262. Address address = addresses[0];
  263. string addressLine = address.GetAddressLine(0);
  264.  
  265. return addressLine;
  266. }
  267. else
  268. {
  269. return null;
  270. }
  271. }
  272.  
  273. /**
  274. * Try to get Locality
  275. * @return null or locality
  276. */
  277. public string getLocality(Context context)
  278. {
  279. IList<Address> addresses = getGeocoderAddress(context);
  280.  
  281. if (addresses != null && addresses.Count > 0)
  282. {
  283. Address address = addresses[0];
  284. string locality = address.Locality;
  285.  
  286. return locality;
  287. }
  288. else
  289. {
  290. return null;
  291. }
  292. }
  293.  
  294. /**
  295. * Try to get Postal Code
  296. * @return null or postalCode
  297. */
  298. public string getPostalCode(Context context)
  299. {
  300. IList<Address> addresses = getGeocoderAddress(context);
  301.  
  302. if (addresses != null && addresses.Count > 0)
  303. {
  304. Address address = addresses[0];
  305. string postalCode = address.PostalCode;
  306.  
  307. return postalCode;
  308. }
  309. else
  310. {
  311. return null;
  312. }
  313. }
  314.  
  315. /**
  316. * Try to get CountryName
  317. * @return null or postalCode
  318. */
  319. public string getCountryName(Context context)
  320. {
  321. IList<Address> addresses = getGeocoderAddress(context);
  322. if (addresses != null && addresses.Count > 0)
  323. {
  324. Address address = addresses[0];
  325. string countryName = address.CountryName;
  326.  
  327. return countryName;
  328. }
  329. else
  330. {
  331. return null;
  332. }
  333. }
  334.  
  335.  
  336. public void OnLocationChanged(Location location)
  337. {
  338.  
  339. }
  340.  
  341. public void OnProviderDisabled(string provider)
  342. {
  343.  
  344. }
  345.  
  346. public void OnProviderEnabled(string provider)
  347. {
  348.  
  349. }
  350.  
  351. public void OnStatusChanged(string provider, [GeneratedEnum] Availability status, Bundle extras)
  352. {
  353.  
  354. }
  355.  
  356. public override IBinder OnBind(Intent intent)
  357. {
  358. return null;
  359. }
  360. }
  361. }
Add Comment
Please, Sign In to add comment