-1
如果我有2 geo-positions
(longitude
和latitude
)我可以計算從location1
到location2
的旅行時間嗎?我怎樣才能實現這個?計算前往地理座標的時間
CLLocation *loc = [[CLLocation alloc] initWithLatitude:@"xxxxxxx" longitude:@"xxxxxxx"];
CLLocation *loc2 = [[CLLocation alloc] initWithLatitude:@"xxxxxx" longitude:@"xxxxxx"];
這些是我唯一的代碼,我如何計算所需的時間?
我知道另一種方法,我可以想出時間。它的Distance Between the 2 location/Speed
。
但是有沒有其他辦法可以做到這一點?