我很确定,这是一个noob想要问但是这里有:
我正在写一个小应用程序,现在应该返回一个带有gps坐标的字符串。这是我得到的:public string GiveGpsLocation()
{
string StringWithCoordinates = "NULL";
return StringWithCoordinates;
所以,正如你所见 - 我非常无助atm;)
无论如何,我遇到了这个小网站: https://developer.xamarin.com/api/type/Android.Locations.Location/
在那里,根据公共方法,我发现了这一点: 静态的 转换(Double,Format):String
Converts a coordinate to a String representation.
现在,我对c#和所有人都很新(来自pascal ......),我只是想知道如何使用它。我基本上是我需要的,现在我需要在我的代码中实现它。我该怎么开始?对不起,如果这已经太容易了,但我真的卡住了:(
感谢hundret :)
答案 0 :(得分:3)
这个链接提供了一个完整的解释,说明如何通过api更轻松地获取gps cordnitates。 https://developer.xamarin.com/recipes/android/os_device_resources/gps/get_current_device_location/