2012-02-25 20 views
0

こんにちは私はWinFormsで実行中のログを開発中です。誰かがGoogleマップの統合に役立つリソースを持っているかどうかを知りたい。最終目標は、「距離」列のセルをユーザーがダブルクリックすると、新しいフォームが開きます。新しいフォームには、ユーザーがGoogleの距離測定ツールを使用してルートをトレースできるGoogleマップがあります。そのルートを受け入れるとウィンドウが閉じ、トレースされたルートの距離(マイル)がセルに入力されます。Google Map Integration、測定距離を取得

実際にはC#アプリケーションで可能であれば、私はGoogle Mapsとの統合について全く新しいものです。私の目標を達成するためのサンプルコードを見つけることができる正しい方向に私を指摘してください。

ありがとうございます。

答えて

2

GoogleマップAPIを使用する必要があります。 ありがたいことに、これはかなりシンプルで、よくサポートされているJSONを使用しています。

は見たことがあります:残念ながらGoogleは最速ルートを実行しなかった場合にはあまり使用されていない、あなたが入力した2点間の最適なルートを http://code.google.com/apis/maps/documentation/distancematrix/

を選択します。これに対処するには

は、ここを見て: http://code.google.com/apis/maps/documentation/directions/

をこれは、ウェイポイントを追加することができますので、おそらくより便利ですが、あなたはおそらく、これらのウェイポイントを自分で作成することが必要になります。

覚えておいていただきたいのは、多数のリクエストが発生すると予想される場合、Googleが開発者にこれらのサービスを使用するように請求していることです。ビジネス以外のユーザーであれば、リクエスト1回につき最大8つのウェイポイントで、1日あたり2,500件のリクエストに制限されます。

4

利用プロジェクトでこのクラスを使用すると、https://www.nuget.org/packages/newtonsoft.json/

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using Newtonsoft.Json.Linq; 

namespace Management 
{ 
    class DeliveryMapInfo 
    { 
    string origin = @""; //Write the address of the origin here 
    public DeliveryMapInfo() { } 
    public int getDistanceTo(string destination) 
    { 
     System.Threading.Thread.Sleep(1000); 
     int distance = -1; 
     string url = "http://maps.googleapis.com/maps/api/directions/json?origin=" + origin + "&destination=" + destination + "&sensor=false"; 
     string requesturl = url;string content = fileGetJSON(requesturl); 
     JObject _Jobj = JObject.Parse(content); 
     try 
     { 
      distance = (int)_Jobj.SelectToken("routes[0].legs[0].distance.value"); 
      return distance/1000;// Distance in KMS 
     } 
     catch 
     { 
      return distance/1000; 
     } 
    } 
    protected string fileGetJSON(string fileName) 
    { 
     string _sData = string.Empty; 
     string me = string.Empty; 
     try 
     { 
      if (fileName.ToLower().IndexOf("http:") > -1) 
      { 
       System.Net.WebClient wc = new System.Net.WebClient(); 
       byte[] response = wc.DownloadData(fileName); 
       _sData = System.Text.Encoding.ASCII.GetString(response); 

      } 
      else 
      { 
       System.IO.StreamReader sr = new System.IO.StreamReader(fileName); 
       _sData = sr.ReadToEnd(); 
       sr.Close(); 
      } 
     } 
     catch { _sData = "unable to connect to server "; } 
     return _sData; 
    } 
} 

からNewtonsoft.Json.Linqを得ることができます 二つの場所の間の距離を}得るために

あなたのアイデアの多くは、あなたが望むAPIに依存しますすなわち、使用する。 通知:「/ directions /」 ジオコード、距離の検索、期間の検索などが可能なため、私の使用に最も完全なAPIとして方向が見つかりました。 しかし、サイズ方向JSONファイルのサイズは他のJSONファイルよりも大きいです。 あなたの判断を使用してください。

などのため
string url = "http://maps.googleapis.com/maps/api/directions/json?origin=" + origin + "&destination=" + destination + "&sensor=false"; 

distance = (int)_Jobj.SelectToken("routes[0].legs[0].distance.value"); 

行き方JSONファイルの内部構造は、次のとおりです。

-Routes 

    - Bound 
     - NorthEast 
     - SouthWest 
    - Copyrights 
    - Legs 
     - Steps 
      - duration 
      - distance 
      - endlocation 
      - maneuver 
      - htmlinstructions 
      - polyline 
      - startlocation 
      - travelmode 
     - Distance 
      - text 
      - value 
     - Duration 
      - text 
      - value 
     - StartAddress 
     - EndAddress 
     - EndLocation 
      - lat 
      - lng 
     - StartLocation 
      - lat 
      - lng 
    - Overview Polyline 
    - Summary 
    - Warnings 
    - Waypoint Order 

- Status 
関連する問題