如何在 Google 地图 API Xamarin for iOS 中获取 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);
但是有一点F我回来了。
我需要
CLLocationCoordinate2D
有什么想法吗?
你可以使用这样的东西:
CLLocationCoordinate2D coordinate = mapView.Projection.CoordinateForPoint(location);
注意:该点应该相对于地图视图。