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
[如何計算給定緯度/經度位置的邊界框?](http://stackoverflow.com/questions/238260/how-to-calculate-the-bounding-box-for-a -given-lat-lng-location) –
參見http://stackoverflow.com/a/2409582/467105。 – Anna
@安娜謝謝,它解決了我的問題。 – OzanWt