2017-09-05 59 views
0

我希望能夠存儲正在使用移動應用程序的城市或位置。當用戶登錄到應用程序時,這將被跟蹤。我正在閱讀地理位置,但不是很清楚。這可能嗎?我正在使用xamarin表單。任何鏈接將不勝感激。存儲使用移動應用程序的城市或位置

+0

地理位置正在使用設備的GPS來獲取用戶位置的緯度/經度。然後,您將使用反向地理編碼服務將其轉換爲實際地址。 XF有一個geolocator插件,可以幫你完成大部分工作。 – Jason

+0

你有我可以檢查的例子嗎?你有任何鏈接到任何有用的文檔? – user2320476

+2

[以xamarin格式獲取緯度 - 經度設備位置]的可能重複(https://stackoverflow.com/questions/38137560/get-device-location-in-latitude-longitude-in-xamarin-forms) – Jason

回答

0

請使用CrossGeolocator

var position = await CrossGeolocator.Current.GetPositionAsync (timeoutMilliseconds: 10000); 
double lat = position.Latitude; 
double long = position.Longitude; 

您可以按照github上用於此目的: https://github.com/jamesmontemagno/GeolocatorPlugin


此外,我建議你先請求權限。

相關問題