我正在尝试开发类似于this app。
的iOS应用我需要计算两个城市或两个地点之间的中间位置。我无法弄清楚哪种API是最好的。我试过google Directions API。但是那个donot提供了两个地点之间的位置。任何人都可以建议API。我需要在swift中实现它。
由于
答案 0 :(得分:4)
您需要使用this api来获取两个地点和城市之间的路线
当您触发此api时,您会在此词典中获得编码的折线对象
overview_polyline: {
points: "m_qkCknuyLiIgEeAw@gA_A{HgGs@i@i@|@m@jAuCdGa@z@QRy@pBYXa@t@BBf@b@tE`Aa@lJKjA?P"
},
如上所述,它是两点之间经纬度的编码格式
你可以通过以下方法获得纬度和经度数组
NSInteger index = 0, len = encoded.length;
int lat = 0, lng = 0;
while (index < len) {
int b, shift = 0, result = 0;
do {
// b = encoded.charAt(index++) - 63;
b = [encoded characterAtIndex:index++] - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
int dlat = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lat += dlat;
shift = 0;
result = 0;
do {
b = [encoded characterAtIndex:index++] - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
int dlng = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lng += dlng;
CLLocation *loc = [[CLLocation alloc] initWithLatitude:((double) lat / 1E5) longitude:((double) lng / 1E5)];
[arrLocation addObject:loc];
}