web-dev-qa-db-ja.com

python Googleマップでマップを表示

Pythonからgoogleマップにアクセスする googlemaps パッケージを見つけましたが、pythonコードで結果を表示するデモは見つかりませんでした。

例えば:

gmaps = googlemaps.Client(key='Add Your Key here')

# Geocoding an address
geocode_result = gmaps.geocode('1600 Amphitheatre Parkway, Mountain View, CA')

# Look up an address with reverse geocoding
reverse_geocode_result = gmaps.reverse_geocode((40.714224, -73.961452))

# Request directions via public transit
now = datetime.now()
directions_result = gmaps.directions("Sydney Town Hall",
                                     "Parramatta, NSW",
                                     mode="transit",
                                     departure_time=now)

Directions_resultをコンソールに出力できますが、グラフィックモードで地図を表示する方法がわかりません。検索結果をPythonでマップとして表示するにはどうすればよいですか?

9
beetlej

googlemapsパッケージはdata/responses API専用であるためです。


詳細については、このチュートリアルをお読みください(JSマップとデータ分析の記述): https://github.com/invisibleroads/invisibleroads-tutorials/blob/master/geodjango-googlemaps-build.rst


Googleマップにデータをプロットするには、次を使用します。 https://github.com/vgm64/gmplot

16