我的应用程序形成路线使用google.map api,我希望通过谷歌帐户(电子邮件),通过按钮使用javascript将此路线发送到汽车或手机\平板电脑;
service.route
喜欢这样:
service.route({
origin: officeLocation,
destination: officeLocation,
waypoints: clientAdrArray,
travelMode: google.maps.TravelMode.DRIVING,
avoidTolls: true
}, function (response, status) {
if (status === google.maps.DirectionsStatus.OK) {
display.setDirections(response);
} else {
alert('ERROR: ' + status);
}
});