如何在适用于 iOS 的 Google 地图 API Xamarin 中获取 PointF 的坐标(CLLocationCoordinate2D)
以前用过:
PointF location = reticula.Center;
CLLocationCoordinate2D coordinate = MapaApple.ConvertPoint (location, this.View);
CLLocationCoordinate2D 我确实返回了,但现在使用 google API
我使用这样的东西:
PointF location = reticula.Center;
CLLocationCoordinate2D coordinate = new CLLocationCoordinate2D (MapaGoogle.ConvertPointFromView(CLLocation,this.View);
但是我回来了。
我需要 CLLocationCoordinate2D 有什么想法吗?