6

私のプログラミング知識は非常に限られており、プログラミングを含む大学のプロジェクトに取り組んでいます。

私がやりたいのは、あなたの現在地とリサイクル ポイントの場所を示す地図です。現在地の部分は既に作成済みで、フュージョン テーブルを使用してリサイクル ポイントを地図上に表示しました。しかし、現在の場所とリサイクル ポイントの間の最短ルートを見つけるオプションも提供したいと思いました。

つまり、現在の場所とすべてのリサイクル ポイントとの間の距離を計算し、最短のポイントを表示するということです。

現在、Google マップの API チュートリアルを理解しようとしていますが、フュージョン テーブルを使用してこれが可能かどうかはわかりません。だから私は誰かがこれを行う方法を知っているかどうか知りたかった.

どうもありがとう!

<!DOCTYPE html>
<html>
<head>
<section id="wrapper">
Clique no botão "permitir" para deixar o browser encontrar a sua localização
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<article>
</article>
<script>


function success(position) {
  var mapcanvas = document.createElement('div');
  mapcanvas.id = 'mapcontainer';
  mapcanvas.style.height = '350px';
  mapcanvas.style.width = '450px';
  document.querySelector('article').appendChild(mapcanvas);

  var coords = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);

  var options = {
    zoom: 15,
    center: coords,
    mapTypeControl: false,
    navigationControlOptions: {
        style: google.maps.NavigationControlStyle.SMALL
    },
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };

  var map = new google.maps.Map(document.getElementById("mapcontainer"), options);
  var marker = new google.maps.Marker({
      position: coords,
      map: map,
      title:"You are here!"
  });

  var layer = new google.maps.FusionTablesLayer({
    query: {
    select: 'Coordenadas',
    from: '1CwMDrcxebjsb8sjG42rbGVAZB25Zi7CvaLJXOCM'
  },


});
 layer.setMap(map)
}


if (navigator.geolocation) {
  navigator.geolocation.getCurrentPosition(success);
} else {
  error('Geo Location is not supported');
}
</script>
</section>

</head>
<body>

</body>

</html>
4

1 に答える 1

6

更新

にクエリを送信して、最も近い点の座標を取得できますGoogle Visualization API

// Initiate the GViz query
var queryList = [];
queryList.push("SELECT Location FROM ");
queryList.push(tableId);
queryList.push(" ORDER BY ST_DISTANCE(Location, LATLNG(");
queryList.push(currentLat + "," + currentLng);
queryList.push(")) ");
queryList.push(" LIMIT 1");

var queryText = encodeURIComponent(queryList.join(''));
var query = new google.visualization.Query(
                         'http://www.google.com/fusiontables/gvizdata?tq=' +
                          queryText);

// Handling the result of nearest location query
query.send(function(response) {
    dataTable = response.getDataTable();

    // If there is any result
    if (dataTable && dataTable.getNumberOfRows()) {
        console.log("Nearest Point is: " + dataTable.getValue(0,0));

        // Result holds the coordinates of nearest point
        var result = dataTable.getValue(0,0).split(",");

        // Creates a Google Map LatLng from "result"
        var latlng = new google.maps.LatLng(result[0], result[1]);
        showRoute(latlng);
    }

});

ここで実際の例を確認できます。


その目的で距離マトリックス サービスを使用することができます。現在地から原産地を読み取り、Distance Matrix Serviceリサイクル ポイントごとに にリクエストを送信するだけです。Distance Matrix Sampleにも例があります。

var mylocation = new google.maps.LatLng(CURRENT_LOCATION_LAT, CURRENT_LOCATION_LNG);

// Destination by address
var destination1 = "Stockholm, Sweden";

// or destination by lat and lng
var destination2 = new google.maps.LatLng(50.087692, 14.421150);

// Sending request
var service = new google.maps.DistanceMatrixService();
service.getDistanceMatrix(
  {
    origins: [mylocation],
    destinations: [destination1, destination2],
    travelMode: google.maps.TravelMode.DRIVING, 
    avoidHighways: false,
    avoidTolls: false
  }, callback);

function callback(response, status) {
  // See Parsing the Results for
  // the basics of a callback function.
}

それに応じて期間を計算する移動モードを指定できます。

google.maps.TravelMode.DRIVING (デフォルト) は、道路網を使用した標準的な運転ルートを示します。
google.maps.TravelMode.BICYCLINGは、自転車専用道路と優先道路による自転車ルートをリクエストします。
google.maps.TravelMode.TRANSITは、公共交通機関の経路を経由するルートをリクエストします。 google.maps.TravelMode.WALKINGは、歩行者専用道と歩道を通る徒歩ルートをリクエストします。

于 2013-05-26T09:46:32.283 に答える