如何在 Google Maps API iOS 中获取某个点的坐标?

问题描述 投票:0回答:1

如何在 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
有什么想法吗?

ios google-maps xamarin xamarin.ios
1个回答
1
投票

你可以使用这样的东西:

CLLocationCoordinate2D coordinate = mapView.Projection.CoordinateForPoint(location);

注意:该点应该相对于地图视图。

© www.soinside.com 2019 - 2024. All rights reserved.