0

我使用 HTML5 localstorage 将开始和结束坐标存储在客户端设备上。要显示他开始和结束之间的路线,我必须使用谷歌地图驾驶列表(不是地图..只是文本格式的方向)应用程序在 jquery移动的。

<div data-role="content">

    <div data-role="content" id="list"> 
    <ul data-role="listview" data-inset="true" data-filter="true" id="myList">

我可以在 ID 为 myList 的列表视图中添加该驾驶列表吗?

 function gotDirections(geo){
        var directionsService = new google.maps.DirectionsService();
        var directionsDisplay = new google.maps.DirectionsRenderer();
        directionsDisplay.setPanel(document.getElementById("myList"));
        var storedlati=localStorage.getItem("text1");
        var storedlongi=localStorage.getItem("text");
        var destilati=localStorage.getItem("text2");
        var destilongi=localStorage.getItem("text3");
        var request = {
            origin:google.maps.LatLng(storedlati,storedlongi),
            destination:google.maps.LatLng(destilati,destilongi),
            travelMode: google.maps.TravelMode.DRIVING
        };
        directionsService.route(request, function(result, status) {
            if (status == google.maps.DirectionsStatus.OK) {
                directionsDisplay.setDirections(result);
            }
        });

    }
4

1 回答 1

0

在这种情况下,只需在方向渲染器上设置方向面板,而不是地图;并且不要创建地图。像这个例子

于 2012-11-02T05:09:23.483 回答