2013-07-18 124 views

回答

2
+0

http://www.google.com/mobile/maps/ ## http://developer.android.com/intl/es/reference/android/location/LocationManager.html ## http:// developer。 android.com/intl/es/guide/topics/location/strategies.html ##當您在Google中搜索時,只有3個第一項... –

11

可以使用的LocationManager

LocationManager locationManager = (LocationManager) getApplicationContext().getSystemService(LOCATION_SERVICE); 

Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER); 
+0

我可以使用v1地圖來顯示地圖 – user2506173

+0

@ user2506173這無關緊要與地圖完全獨立 – tyczj

+0

您可以獲得經度和經度,並且該值顯示地圖 –

1

使用的LocationManager並設置適當的供應商,GPS或網絡。 您可以分別使用requestLocationUpdates()和getLastKnownLocation()方法獲取定期更新或單個更新。 最後,獲取一個Location對象並通過調用Location對象上的所需方法來檢索緯度,經度。

相關問題