如何使用适用于 iOS 的 google maps sdk 获取位置的 CGPoint?我需要在用户位置上添加 pinview。
问问题
3719 次
2 回答
21
这基本上与这个问题相反,例如:
GMSMapView* mapView = ...;
CLLocationCoordinate2D coordinate = ...;
...
CGPoint point = [mapView.projection pointForCoordinate: coordinate];
于 2013-02-25T12:30:42.143 回答
0
好的,根据您的问题,您是否要将用户位置转换为 cgpoint,是吗.. 尝试使用它。
CGPoint newCenter = [self.map convertCoordinate:coord toPointToView:self.map];
问候。
于 2013-02-25T12:08:45.153 回答