Using pip:
pip install django-location-fieldConfiguration¶
Add location_field.apps.DefaultConfig
to INSTALLED_APPS
.
Example:
INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'location_field.apps.DefaultConfig', ]Choose a map provider¶
At this moment we support three map providers:
Choose a search provider¶At this moment we support three search providers:
Rendering form with a map¶NOTE: If you will be using the map widget only inside Django admin, you can skip this section as it should work out-of-the-box.
The way to render a form containing a map is the same as any other forms containing their own javascript and stylesheets, except that you need to ensure your page loads jQuery
.
<head> <script src="[ link to jquery.js goes here ]"></script> {{form.media}} </head> <body> {{form}} </body>
You can find a running example in the example app (example/
directory).
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4