Google Maps API は次の方法でルート案内をサポートしていることがわかりました。
var map;
var directionsPanel;
var directions;
function initialize() {
map = new GMap2(document.getElementById("map_canvas"));
directionsPanel = document.getElementById("my_textual_div");
map.setCenter(new GLatLng(49.496675,-102.65625), 3);
directions = new GDirections(map, directionsPanel);
directions.load("from: 500 Memorial Drive, Cambridge, MA to: 4 Yawkey Way, Boston, MA 02215 (Fenway Park)");
}
では、これをどのように Objective-C に変換して、iPhone で取得できるようにするのでしょうか? MKMapView で線を引く方法を知っています。ルートの地理位置情報が必要なだけです。
または、2 つの位置情報ポイント間のルートを取得する別の方法があるかもしれません。
私にお知らせください、
前もって感謝します。