2014-07-08 93 views
0

我使用Twitter流api爲我的ios項目。 Stream API有一個location參數。我怎樣才能從用戶位置(緯度/經度)和1公里的距離獲得邊界框座標? MapKit或數學函數中是否有任何API或工具?從緯度/長度和距離獲取邊界框

輸入

(latitude = 37.785834, longitude = -122.406417) 
Distance = 1000 meter 

輸出

latMin: 37.789934 longMin : -122.416417 
latMax: 37.787834 longMax : -122.396417 
+0

[如何計算給定緯度/經度位置的邊界框?](http://stackoverflow.com/questions/238260/how-to-calculate-the-bounding-box-for-a -given-lat-lng-location) –

+1

參見http://stackoverflow.com/a/2409582/467105。 – Anna

+0

@安娜謝謝,它解決了我的問題。 – OzanWt

回答

0

是的,檢查出功能<MapKit/MKGeometry.h>MKMetersPerMapPointAtLatitude(),這將允許您轉換距離映射點,然後點映射到屏幕點。

+0

其實我不想將任何東西轉換成地圖點。只需要用戶位置的邊界座標。爲了清晰起見,我添加了示例。 – OzanWt

相關問題