住所と地理座標を変換できます。
以下の例は、このクラスを使用して場所に対する上位 9 件の一致を見つける方法を示しています。
「メイン ストリート」地図に追加し、新しい Google ドキュメントに埋め込むことができます。
// Find the best matches for "Main St" in Colorado. var response = Maps.newGeocoder() // The latitudes and longitudes of southwest and northeast corners of Colorado, respectively. .setBounds(36.998166, -109.045486, 41.001666,-102.052002) .geocode('Main St'); // Create a Google Doc and map. var doc = DocumentApp.create('My Map'); var map = Maps.newStaticMap(); // Add each result to the map and doc. for (var i = 0; i < response.results.length && i < 9; i++) { var result = response.results[i]; map.setMarkerStyle(null, null, i + 1); map.addMarker(result.geometry.location.lat, result.geometry.location.lng); doc.appendListItem(result.formatted_address); } // Add the finished map to the doc. doc.appendImage(Utilities.newBlob(map.getMapImage(), 'image/png'));
関連情報
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
geocode(address) | Object | 指定された住所のおおよその地理的ポイントを取得します。 |
reverseGeocode(latitude, longitude) | Object | 指定された地理的位置のおおよその住所を取得します。 |
setBounds(swLatitude, swLongitude, neLatitude, neLongitude) | Geocoder | 検索結果で優先されるエリアの境界を設定します。 |
setLanguage(language) | Geocoder | 結果で使用する言語を設定します。 |
setRegion(region) | Geocoder | ロケーション名を解釈するときに使用するリージョンを設定します。 |
詳細なドキュメント
geocode(address)
指定された住所のおおよその地理的ポイントを取得します。
// Gets the geographic coordinates for Times Square. var response = Maps.newGeocoder().geocode('Times Square, New York, NY'); for (var i = 0; i < response.results.length; i++) { var result = response.results[i]; Logger.log('%s: %s, %s', result.formatted_address, result.geometry.location.lat, result.geometry.location.lng); }
パラメータ
名前 | 型 | 説明 |
---|---|---|
address | String | 住所 |
戻る
Object
- ジオコーディング データを含む JSON オブジェクト(こちらを参照)
reverseGeocode(latitude, longitude)
指定された地理的位置のおおよその住所を取得します。
// Gets the address of a point in Times Square. var response = Maps.newGeocoder().reverseGeocode(40.758577, -73.984464); for (var i = 0; i < response.results.length; i++) { var result = response.results[i]; Logger.log('%s: %s, %s', result.formatted_address, result.geometry.location.lat, result.geometry.location.lng); }
パラメータ
名前 | 型 | 説明 |
---|---|---|
latitude | Number | 点の緯度 |
longitude | Number | 地点の経度 |
戻る
Object
- リバース ジオコーディング データを含む JSON オブジェクト(こちらを参照)
関連情報
setBounds(swLatitude, swLongitude, neLatitude, neLongitude)
検索結果で優先されるエリアの境界を設定します。
// Creates a Geocoder that prefers points in the area of Manhattan. var geocoder = Maps.newGeocoder() .setBounds(40.699642, -74.021072, 40.877569, -73.908548);
パラメータ
名前 | 型 | 説明 |
---|---|---|
swLatitude | Number | 境界の南西端の緯度 |
swLongitude | Number | 境界の南西端の経度 |
neLatitude | Number | 境界の北東隅の緯度 |
neLongitude | Number | 境界の北東の角の経度 |
戻る
Geocoder
- 呼び出しのチェーンを容易にするジオコーダ オブジェクト
関連情報
setLanguage(language)
結果で使用する言語を設定します。
// Creates a Geocoder with the language set to French. var geocoder = Maps.newGeocoder().setLanguage('fr');
パラメータ
名前 | 型 | 説明 |
---|---|---|
language | String | BCP-47 言語識別子 |
戻る
Geocoder
- 呼び出しのチェーンを容易にするジオコーダ オブジェクト。
関連情報
setRegion(region)
ロケーション名を解釈するときに使用する地域を設定します。サポートされている地域コードは Google マップでサポートされている国別コード トップレベル ドメインです。たとえば、地域コード「uk」は、対応する 「maps.google.co.uk」
// Creates a Geocoder with the region set to France. var geocoder = Maps.newGeocoder().setRegion('fr');
パラメータ
名前 | 型 | 説明 |
---|---|---|
region | String | 使用するリージョン コード |
戻る
Geocoder
- 呼び出しのチェーンを容易にするジオコーダ オブジェクト