Geocoding API Visualizer
1. Forward Geocode
2. Reverse Geocode
3. The Bad Address
Python Script
# Forward Geocoding
loc = geolocator.geocode("Eiffel Tower")
print(loc.latitude, loc.longitude)
AttributeError: 'NoneType' object has no attribute 'latitude'
Run Code
Network & Map
Nominatim API Server
Response Data
Outbound
Inbound
Forward Geocoding:
Converts a human-readable text string into precise spatial coordinates. Click
Run Code
.