The current URL configuration uses query strings to send lat/lng requests to the server. It'd be much more modern to send it as REST-style URLs. This requires changing:
- urls.py -- needs to be updated to take lat/lng. See the Django documentation for the syntax.
- views.py -- needs to be updated to take the lat/lng as arguments to the view methods.
- services.js -- needs to be updated to send the lat/lng correctly.