如何在iOS的Google Maps 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);
但是有一个PointF我回来了。
我需要CLLocationCoordinate2D有什么想法吗?
最佳答案
您可以使用如下形式:
CLLocationCoordinate2D coordinate = mapView.Projection.CoordinateForPoint(location);
注意:该点应相对于 map 视图。
关于ios - 如何在Google Maps API iOS中获取有关点的坐标?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19226726/