-
APIキーの取得: まず、Google Elevation APIを使用するにはAPIキーが必要です。Google Cloud Platformのアカウントを作成し、プロジェクトを作成してAPIキーを生成してください。
-
APIリクエストの作成: 以下は、Pythonを使用してGoogle Elevation APIにリクエストを送信する基本的なコード例です。
import requests
def get_elevation(lat, lng, api_key):
url = f"https://maps.googleapis.com/maps/api/elevation/json?locations={lat},{lng}&key={api_key}"
response = requests.get(url)
data = response.json()
if data["status"] == "OK":
elevation = data["results"][0]["elevation"]
return elevation
else:
return None
# 使用例
latitude = 37.7749 # 緯度
longitude = -122.4194 # 経度
api_key = "ここにAPIキーを入力"
elevation = get_elevation(latitude, longitude, api_key)
print(f"The elevation is: {elevation} meters")
このブログ投稿では、Google Elevation APIの基本的な使い方とコード例を紹介しました。これを参考にして、標高情報の取得に役立ててください。