Skip to content

jamesfoley/django-location-picker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

===== Django Location Picker

Simply adds a field to the django admin with a map that allows the user to pick a location on a map.

Quick start

  1. Add "location_picker" to your INSTALLED_APPS setting like this:
    INSTALLED_APPS = (
        ...
        'location_picker',
    )
  1. Import the field in your models.py:
    from location_picker.fields import LocationField
  1. Add the location field to your model:
    location = LocationField(
        max_length=256,
        null=True,
        blank=True
    )

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published