地圖視圖帶有一個大頭針圖形。想要實現在 用戶當前位置 到 大頭針指向的位置 畫一條路線。
但是不知道應該從哪兒開始?我搜索了很多結果也沒弄出來。謝謝您的幫助。給指出一個方向也可以。
可以提供給你兩種方法:
1.
CLLocationCoordinate2D start = { c_lat, c_long };
CLLocationCoordinate2D destination = { [[dic valueForKey:@"business_lat"]doubleValue], [[dic valueForKey:@"business_long"]doubleValue] };
NSString *googleMapsURLString = [NSString stringWithFormat:@"http://maps.google.com/?saddr=%1.6f,%1.6f&daddr=%1.6f,%1.6f&",start.latitude, start.longitude, destination.latitude, destination.longitude];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:googleMapsURLString]];
2.
使用谷歌 API