如何將CLLocation
或CLLocationCoordinate2D
轉換爲CGPoint
。 我見過將CLLocation或CLLocationCoordinate2D轉換爲CGPoint
CGPoint point = [mapView convertCoordinate:myCoordinates toPointToView:self.view];
但我不需要在我的情況下使用mapView
。我嘗試了谷歌搜索,但沒有遇到任何有用的東西。
編輯: 我需要將地理座標轉換爲iPad的屏幕座標,如Convert decimal latitude/longitude coordinates to iPad screen coordinates。 我想根據轉換後的座標值繪製線條/路徑。
是否有直接的方法來做到這一點,還是我需要編寫一個算法來做同樣的事情。
如果您不需要使用mapView,那麼您爲什麼需要將座標轉換爲CGPoint? – Geek
除了使用地圖視圖外,沒有別的方法。 –
我從' - (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations'獲取當前座標。 需要繪製基於視圖的路徑。這裏沒有地圖。 –