C# Google Geocoding

Googlのジオコーディングを使用して、住所から緯度・経度などの情報を取得する

try
{
    string address = "渋谷区道玄坂1-1-1"; // エンコードなしでOK
    string myKey = "mykey0123456789mykey0123456789"; // API Key

    string uri = string.Format(
        "https://maps.googleapis.com/maps/api/geocode/json?address={0}&key={1}",
        address, myKey);

    string responseBody = await client.GetStringAsync(uri);
    Console.WriteLine(responseBody);
}
catch (Exception ex) { MessageBox.Show(ex.Message); }
 

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください