问题 I cannot see anything in their API to do this: https://docs.djangoproject.com/en/dev/ref/contrib/gis/geoip/#geoip-api Or should I just use Google API for Reverse Geocoding? 回答1: Solution - call this URL and parse it's JSON. http://maps.googleapis.com/maps/api/geocode/json?latlng=%f,%f&sensor=false 回答2: Use geopy, it can handle multiple geocoders including googlev3. from geopy.geocoders import GoogleV3 geolocator = GoogleV3() location = geolocator.reverse("52.509669, 13.376294") print(location