0

DirectionsRendererオブジェクトの出力をテキストエリアに送信するのを手伝ってくれる人はいますか

コードを試して、2 つの場所の間の運転ルートを検索しました。私はそれを機能させました。しかし、ページにあるテキスト領域に道順を表示しようとしています。

次のコードがあります。私を助けてください。

<?php
$s= $_REQUEST['source'].", Pune";
$d= $_REQUEST['destination'].", Pune";

?>

    <!DOCTYPE html>


    <html> 
    <head> 
       <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> 
       <title>Google Maps API v3 Directions Example</title> 
       <script type="text/javascript" 
           src="http://maps.google.com/maps/api/js?sensor=false"></script>
    </head> 
    <body style="font-family: Arial; font-size: 12px;"> 
       <div style="width: 600px;">
         <div id="map" style="width: 280px; height: 400px; float: left;"></div> 
         <div id="panel" style="width: 300px; float: right;"></div> 
   </div>
       <textarea cols="100" rows="10" id="abc"/>
       </textarea>
        <script type="text/javascript">     

        var source1 = "<?php echo $s; ?>";
        var dest1 = "<?php echo $d; ?>";
     var directionsService = new google.maps.DirectionsService();
     var directionsDisplay = new google.maps.DirectionsRenderer();

     var map = new google.maps.Map(document.getElementById('map'), {
       zoom:7,
       mapTypeId: google.maps.MapTypeId.ROADMAP
     });

     directionsDisplay.setMap(map);
     directionsDisplay.setPanel(document.getElementById('panel'));

     var request = {
       origin: source1, 
       destination: dest1,
       travelMode: google.maps.DirectionsTravelMode.DRIVING
     };

     directionsService.route(request, function(response, status) {
       if (status == google.maps.DirectionsStatus.OK) {

     directionsDisplay.setDirections(response);


       }
     });
   </script> 
    </body> 
    </html>
4

2 に答える 2

-1

結果を表示するために a を使用し<div id="content">ました。スクリプトでは、これを置き換えました:

directionsDisplay.setPanel(document.getElementById('panel'));

と:

directionsDisplay.setPanel(document.getElementById('content'));

そしてそれはうまくいきました。

于 2016-06-05T18:55:26.427 に答える