0
私はDirectionsManager経由でルートをマッピングし、ルートオブジェクトを保存しました。私はこのルートをしばらくしてからリロードしたいと思います。実行する方法?Bing Maps v8 - 保存されたルートをDirectionsManagerまたは同等のものに再ロードするにはどうすればよいですか?
以下、それはルートオブジェクトを変数に保存されているコードからの抜粋を次に示します。Bing Mapsのための使用の
var directionsManager;
Microsoft.Maps.loadModule('Microsoft.Maps.Directions', function() {
directionsManager = new Microsoft.Maps.Directions.DirectionsManager(map);
directionsManager.setRequestOptions({
routeMode: Microsoft.Maps.Directions.RouteMode.driving
});
Microsoft.Maps.Events.addHandler(directionsManager, 'directionsUpdated',onUpdateDirections);
});
var myRoute;
function onUpdateDirections(e) {
myRoute = e.route;
};