谷歌地图:获取路线,公里和...价格

时间:2009-10-05 03:37:38

标签: javascript forms google-maps variables

我认为我参与的项目可能对我来说太过分了,但我认为你可以让我朝着正确的方向前进。

我们正在尝试使用一个表单,用户可以在其中编写起点和结尾点,如Google地图示例(http://code.google.com/apis/maps/documentation/examples/directions-advanced.html)中所示,以便输出地图,其中的路线,以及两点之间的公里数。

问题是我们需要将这些Km“翻译”为$。

我认为这可以轻松完成,但我们会有一些变量,例如乘客数量(选择下拉菜单)。

我怎么能把它结合起来?我应该写一个特殊的表格,使用一些PHP吗?我迷失在这里。我怎么能这样做?

假设1 km = 100 $ 并且除了第一个之外的每个额外的人都将为该价格增加100美元。

20公里,2人= 300美元

1-我可以在Google代码中嵌入一些变量吗?
2-如何填写表格?

非常感谢你的帮助。

Google代码

  

var map;
var gdir;
var geocoder = null;
var addressMarker;

function initialize() {
  if (GBrowserIsCompatible()) {      
    map = new GMap2(document.getElementById("map_canvas"));
    gdir = new GDirections(map, document.getElementById("directions"));
    GEvent.addListener(gdir, "load", onGDirectionsLoad);
    GEvent.addListener(gdir, "error", handleErrors);

    setDirections("San Francisco", "Mountain View", "en_US");
  }
}

function setDirections(fromAddress, toAddress,
     

locale){         gdir.load(“from:”+ fromAddress +“to:”+ toAddress,                   {“locale”:locale});       }

function handleErrors(){
 if (gdir.getStatus().code == G_GEO_UNKNOWN_ADDRESS)
   alert("No corresponding geographic location could be found for
     

指定地址之一。这个   可能是因为这个事实   地址相对较新,或者可能   不正确。\ n错误代码:“+   gdir.getStatus()代码)。        else if(gdir.getStatus()。code == G_GEO_SERVER_ERROR)          警报(“地理编码或路线请求无法成功   处理,但确切的原因   失败是未知的。\ n错误   代码:“+ gdir.getStatus()。code);

 else if (gdir.getStatus().code == G_GEO_MISSING_QUERY)
   alert("The HTTP q parameter was either missing or had no value. For
     

地理编码器请求,这意味着一个   空地址被指定为输入。   对于路线请求,这意味着   没有在中指定查询   输入。\ n错误代码:“+   。gdir.getStatus()的代码);

     

// else if(gdir.getStatus()。code   == G_UNAVAILABLE_ADDRESS)< --- Doc bug ...这是未定义的,或   Doc错了//警告(“The   给定地址的地理编码或   给定路线查询的路线   因法律或法律不能退还   合同原因。\ n错误代码:“+   。gdir.getStatus()的代码);

 else if (gdir.getStatus().code == G_GEO_BAD_KEY)
   alert("The given key is either invalid or does not match the domain
     

给出了它。 \ n错误代码:   “+ gdir.getStatus()。code);

 else if (gdir.getStatus().code == G_GEO_BAD_REQUEST)
   alert("A directions request could not be successfully parsed.\n
     

错误代码:“+   。gdir.getStatus()的代码);

 else alert("An unknown error occurred.");
      }
     

function onGDirectionsLoad(){         //使用此功能访问有关最新加载的信息()         //结果。

  // e.g.
  // document.getElementById("getStatus").innerHTML
     

= gdir.getStatus()。code; //和yada yada yada ...}       

2 个答案:

答案 0 :(得分:3)

完整代码:

<html>
<head>
     <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
    <title>Distance Calculator</title> 
    <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true&libraries=places"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
    <style type="text/css">
        #map_canvas { 
            height:500px;
        }
    </style>

    <script type="text/javascript">
    var directionDisplay;
    var directionsService = new google.maps.DirectionsService();
    var map;  

    function initialize() {
        var start = document.getElementById("start");
        var end = document.getElementById("end");
        var autocompletePickpUp = new google.maps.places.Autocomplete(start);
        var autocompleteDelivery = new google.maps.places.Autocomplete(end);
        var uk = new google.maps.LatLng(51.511035, -0.132315);
        var myOptions = {
            zoom:12,
            mapTypeId: google.maps.MapTypeId.ROADMAP,
            center: uk
        } 

        //testing


        directionsDisplay = new google.maps.DirectionsRenderer();
        directionsDisplay.setMap(map);
        map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
        autocompletePickpUp.bindTo('bounds', map); 
        autocompleteDelivery.bindTo('bounds', map);   

    }

    function calcRoute() { 
        var startValue =start.value;
        var endValue = end.value;
        var distanceInput = document.getElementById("distanceKm");
        var distanceMl = document.getElementById("distanceMl");
        var price = document.getElementById("price");

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

        directionsService.route(request, function(response, status) {
            if (status == google.maps.DirectionsStatus.OK) {
                directionsDisplay.setDirections(response);
                distanceInput.value = response.routes[0].legs[0].distance.value / 1000; 
                distanceMl.value =  response.routes[0].legs[0].distance.value * 0.000621371;
                price.value = distanceMl.value * 2.50;

            }
        });         
    }

    </script>
</head>
<body onload="initialize()">
    <div>
        <p>
            <label for="start">Start: </label>
            <input type="text" name="start" id="start" />

            <label for="end">End: </label>
            <input type="text" name="end" id="end" />

            <input type="submit" value="Calculate Route" onclick="calcRoute()" /> 
        </p>
        <p>
            <label for="distanceInKm">Distance (km): </label>
            <input type="text" name="distanceKm" id="distanceKm" readonly="true" />
        </p>

        <p>
            <label for="distanceInMiles">Distance (ML): </label>
            <input type="text" name="distanceMl" id="distanceMl" readonly="true" />
        </p>

        <p>
            <label for="price">Price: </label>
            <input type="text" name="price" id="price" readonly="true" />
        </p>
    </div>
    <div id="map_canvas"></div>
</body>

将其粘贴到html文档中,然后对其进行测试。 我在KM&gt;中获得了值将其转换为Miles&gt;并以英镑获得价格。

我现在就这样做了,并不是100%的功能,但你明白了。

为了给你的乘客计算你只需要得到这个:

<div class="form-group">
   <label>Table</label>
    <select class="form-control required" name="kitchen_table" id="kitchen_table">
       <option value="" selected>Quantity</option>
        <option value="0">0</option>
        <option value="10">1</option>
        <option value="20">2</option>
        <option value="30">3</option>
        <option value="40">4</option>
        </select>
     </div>

 <div class="live_quote">
         <p>Your total is: <span id="total_quote"></span> </p>
 </div>

并获取要打印的值:

$('select').change(function(){
  var total = 0;

  $('select :selected').each(function() {
    total += Number($(this).val());
  });
$("#total_quote").html(total);

})

再次:你可能有一些错误的,但它是有效的,你可以从那里得到一个想法和指导。

答案 1 :(得分:1)

在onGDirectionsLoad()函数中,您可以使用

获取以km为单位的距离
 gdir.getDistance().meters/1000 

我认为你不需要我告诉你如何进行四舍五入,如果有必要的话,乘以100美元并加上额外的乘客费。