directionRenderer(); を使用して 2 つの場所のルートを計算しました。ここで、ルートを pdf 形式でダウンロードする必要があります。出来ますか。ルートマップの私のコードは
var map = new google.maps.Map(document.getElementById("mapp"),myOptions);
latlng=new google.maps.LatLng(glat,glon);
$('#mapDiv1').modal({closeClass: "mapCloseImg"});
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById("panel"));
var request = {
origin: acity,
destination:latlng,
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});