如何使用google maps sdk for iOS获取CGPoint的位置?

时间:2013-02-25 12:05:04

标签: google-maps-sdk-ios

如何使用谷歌地图sdk for iOS获取CGPoint的位置? 我需要在用户位置添加pinview。

2 个答案:

答案 0 :(得分:20)

它基本上与this question相反,例如:

GMSMapView* mapView = ...;
CLLocationCoordinate2D coordinate = ...;
...
CGPoint point = [mapView.projection pointForCoordinate: coordinate];

答案 1 :(得分:0)

好的,根据你的问题,你想将用户位置转换为cgpoint,是吗... 试试这个。

CGPoint newCenter = [self.map convertCoordinate:coord toPointToView:self.map];

问候。