|
ReadMe
Coordinates Form Field for Django Admin
IntroductionThis is the first approach to give admins a nice interface for geographical data. With the included CoordinatesFormField it is possible to add and edit GPS coordinates using one of the popular map services from Google and Yahoo. Since most of the work is done via Javascript it has a nice fallback with a default TextField. The javascript code is written with generalisation in mind to handle the differences between the map systems. Howto use CoordinatesField in your own django app
gps = models.CharField(maxlength=75) #OLD gps = CoordinatesField() #NEW Howto use it on a testing/development server or locallyGoogle MapsPlease visit http://www.google.com/apis/maps/signup.html and request a new API key for the domain http://localhost/ or any other valid URL (also e.g. http://192.168.1.1). Yahoo MapsPlease visit http://search.yahooapis.com/webservices/register_application and request a new API key for the domain http://localhost/ or any other valid URL (also e.g. http://192.168.1.1).
|
Sign in to add a comment