Answers for "distance matrix gogle map python"

0

distance matrix gogle map python

# Install googlemaps module
# pip3 install googlemaps

# importing googlemaps module
import googlemaps
  
# Requires API key
gmaps = googlemaps.Client(key='Your_API_key')
  
# Requires cities name
my_dist = gmaps.distance_matrix('Source','Destination')['rows'][0]['elements'][0]
  
# Printing the result
print(my_dist)
Posted by: Guest on January-24-2022

Python Answers by Framework

Browse Popular Code Answers by Language