可在地址和地理座標之間轉換。
下列範例說明如何使用這個類別,找出科羅拉多州「Main St」地點的前九個相符項目,將這些項目加入地圖,然後嵌入新 Google 文件中。
// Find the best matches for "Main St" in Colorado. const 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. const doc = DocumentApp.create('My Map'); const map = Maps.newStaticMap(); // Add each result to the map and doc. for (let i = 0; i < response.results.length && i < 9; i++) { const 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 | 取得指定地址的大致地理位置點。 |
reverse | Object | 取得指定地理位置點的近似地址。 |
set | Geocoder | 設定在結果中應給予額外偏好的區域邊界。 |
set | Geocoder | 設定結果中使用的語言。 |
set | Geocoder | 設定解讀地點名稱時要使用的區域。 |
內容詳盡的說明文件
geocode(address)
取得指定地址的大致地理位置點。
// Gets the geographic coordinates for Times Square. const response = Maps.newGeocoder().geocode('Times Square, New York, NY'); for (let i = 0; i < response.results.length; i++) { const result = response.results[i]; Logger.log( '%s: %s, %s', result.formatted_address, result.geometry.location.lat, result.geometry.location.lng, ); }
參數
名稱 | 類型 | 說明 |
---|---|---|
address | String | 住家地址 |
回攻員
Object
:包含地理編碼資料的 JSON 物件,如這裡所述
reverse Geocode(latitude, longitude)
取得指定地理位置點的近似地址。
// Gets the address of a point in Times Square. const response = Maps.newGeocoder().reverseGeocode(40.758577, -73.984464); for (let i = 0; i < response.results.length; i++) { const 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 物件,如這裡所述
另請參閱
set Bounds(swLatitude, swLongitude, neLatitude, neLongitude)
設定在結果中應給予額外偏好的區域邊界。
// Creates a Geocoder that prefers points in the area of Manhattan. const geocoder = Maps.newGeocoder().setBounds( 40.699642, -74.021072, 40.877569, -73.908548, );
參數
名稱 | 類型 | 說明 |
---|---|---|
sw | Number | 邊界西南角的緯度 |
sw | Number | 邊界西南角的經度 |
ne | Number | 邊界東北角的緯度 |
ne | Number | 邊界東北角的經度 |
回攻員
Geocoder
:Geocoder 物件,可協助鏈結呼叫
另請參閱
set Language(language)
set Region(region)
設定解讀地點名稱時要使用的區域。支援的區域代碼對應至 Google 地圖支援的 ccTLD。舉例來說,區域代碼「uk」對應「maps.google.co.uk」。
// Creates a Geocoder with the region set to France. const geocoder = Maps.newGeocoder().setRegion('fr');
參數
名稱 | 類型 | 說明 |
---|---|---|
region | String | 要使用的區域代碼 |
回攻員
Geocoder
:Geocoder 物件,可協助鏈結呼叫