特定の場所の標高をサンプリングできます。
以下の例は、このクラスを使用してルート上の最高地点を特定する方法を示しています。
コロラド州のデンバーからグランド ジャンクションまでを撮影した地図を地図上に描き、その地図を Google ドライブに保存します。
// Get directions from Denver to Grand Junction. var directions = Maps.newDirectionFinder() .setOrigin('Denver, CO') .setDestination('Grand Junction, CO') .setMode(Maps.DirectionFinder.Mode.DRIVING) .getDirections(); var route = directions.routes[0]; // Get elevation samples along the route. var numberOfSamples = 30; var response = Maps.newElevationSampler() .samplePath(route.overview_polyline.points, numberOfSamples) // Determine highest point. var maxElevation = Number.MIN_VALUE; var highestPoint = null; for (var i = 0; i < response.results.length; i++) { var sample = response.results[i]; if (sample.elevation > maxElevation) { maxElevation = sample.elevation; highestPoint = sample.location; } } // Add the path and marker to a map. var map = Maps.newStaticMap() .addPath(route.overview_polyline.points) .addMarker(highestPoint.lat, highestPoint.lng); // Save the map to your drive DocsList.createFile(Utilities.newBlob(map.getMapImage(), 'image/png', 'map.png'));
関連情報
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
sampleLocation(latitude, longitude) | Object | ある地点の標高データ(緯度/経度)を返します。 |
sampleLocations(points) | Object | 一連の地点の標高データ(緯度/経度)を返します。 |
sampleLocations(encodedPolyline) | Object | エンコードされたポリライン内の地点の高度データを返します。 |
samplePath(points, numSamples) | Object | 一連の点を使用して定義された、ラインに沿った複数のサンプルの高度データを返します。 |
samplePath(encodedPolyline, numSamples) | Object | エンコードされたポリラインを使用して定義された、ラインに沿った多数のサンプルの高度データを返します。 |
詳細なドキュメント
sampleLocation(latitude, longitude)
ある地点の標高データ(緯度/経度)を返します。
// Gets the elevation of Times Square using a point. var data = Maps.newElevationSampler().sampleLocation(40.759011, -73.984472); Logger.log(data.results[0].elevation);
パラメータ
名前 | 型 | 説明 |
---|---|---|
latitude | Number | サンプリングする点の緯度 |
longitude | Number | サンプリングする地点の経度 |
戻る
Object
- 高度データを含む JSON オブジェクト(こちらを参照)
sampleLocations(points)
一連の地点の標高データ(緯度/経度)を返します。
// Gets the elevation of Times Square and Central Park using points. var data = Maps.newElevationSampler().sampleLocations([ // Times Square 40.759011, -73.984472, // Central Park 40.777052, -73.975464 ]); Logger.log('Times Square: ' + data.results[0].elevation); Logger.log('Central Park: ' + data.results[1].elevation);
パラメータ
名前 | 型 | 説明 |
---|---|---|
points | Number[] | 緯度と経度のペアの配列 |
戻る
Object
- 高度データを含む JSON オブジェクト(こちらを参照)
sampleLocations(encodedPolyline)
エンコードされたポリラインの地点の高度データを返します。
// Gets the elevation of Times Square and Central Park using a polyline. var data = Maps.newElevationSampler().sampleLocations('yvwwF|aqbMwoBiw@'); Logger.log('Times Square: ' + data.results[0].elevation); Logger.log('Central Park: ' + data.results[1].elevation);
パラメータ
名前 | 型 | 説明 |
---|---|---|
encodedPolyline | String | サンプリングする点のエンコードされたポリライン |
戻る
Object
- 高度データを含む JSON オブジェクト(こちらを参照)
samplePath(points, numSamples)
一連の点を使用して定義された、ラインに沿った複数のサンプルの高度データを返します。
// Gets the elevation of five points between Times Square and Central Park. var data = Maps.newElevationSampler().samplePath([ // Times Square 40.759011, -73.984472, // Central Park 40.777052, -73.975464 ], 5); for (var i = 0; i < data.results.length; i++) { Logger.log(data.results[i].elevation); }
パラメータ
名前 | 型 | 説明 |
---|---|---|
points | Number[] | サンプリング対象のパスを定義する緯度と経度のペアの配列 |
numSamples | Integer | ポイントのパスに沿ってサンプリングするポイントの数 |
戻る
Object
- 高度データを含む JSON オブジェクト(こちらを参照)
samplePath(encodedPolyline, numSamples)
エンコードされたポリラインを使用して定義した、ラインに沿った多数のサンプルの高度データを返します。
// Gets the elevation of five points between Times Square and Central Park. var data = Maps.newElevationSampler().samplePath('yvwwF|aqbMwoBiw@', 5); for (var i = 0; i < data.results.length; i++) { Logger.log(data.results[i].elevation); }
パラメータ
名前 | 型 | 説明 |
---|---|---|
encodedPolyline | String | サンプリングするパスを定義する点のエンコードされたポリライン |
numSamples | Integer | ポイントのパスに沿ってサンプリングするポイントの数 |
戻る
Object
- 高度データを含む JSON オブジェクト(こちらを参照)