如何从浏览器发送路由到另一台设备?

时间:2016-07-11 07:16:11

标签: javascript google-maps google-maps-api-3

我的应用程序形成路线使用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);
    }
});

P.S。像这样的按钮,但是以编程方式 enter image description here

1 个答案:

答案 0 :(得分:0)

要将数据从应用程序发送到客户端,您必须使用服务器, 或将Backend用作FirebaseBackand等服务产品。