如何使用谷歌地图sdk for iOS获取CGPoint的位置? 我需要在用户位置添加pinview。
答案 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];
问候。