A django app for store places
Project description
django-places
=============================
A Django app for store places with autocomplete function and a related map to the selected place.
Badges
---------
[](https://badge.fury.io/py/dj-places)
[](https://travis-ci.org/oscarmcm/django-places)
[](https://www.codacy.com/app/om-cortez-2010/django-places?utm_source=github.com&utm_medium=referral&utm_content=oscarmcm/django-places&utm_campaign=Badge_Grade)
Quickstart
----------
Install dj-places and add it to your installed apps:
$ pip install dj-places
INSTALLED_APPS = (
...
'djplaces',
...
)
Add your maps api key in your settings ( [read more here](https://developers.google.com/maps/documentation/javascript/3.exp/reference) ):
MAPS_API_KEY='YourAwesomeUltraSecretKey'
Then use it in a project:
from djplaces.fields import LocationField
place = models.CharField(max_length=250)
location = LocationField(base_field='place')
Demo
------

TODO-LIST
--------
* [ ] Write some test ASAP!
* [ ] Support Inline Admin
* [ ] Set custom zoom map value
* [ ] Custom property for lat and lng values
Running Tests
--------------
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install -r requirements-test.txt
(myenv) $ python runtests.py
Credits
---------
Special thanks to [Helmy Giacoman](https://github.com/eos87) for motivating me to make this package.
Tools used in rendering this package:
* [Cookiecutter](https://github.com/audreyr/cookiecutter)
* [cookiecutter-djangopackage](https://github.com/pydanny/cookiecutter-djangopackage)
* [jquery-geocomplete](https://github.com/ubilabs/geocomplete)
Similar Projects
------------
* [Django Location Field](https://github.com/caioariede/django-location-field)
* [Django Geoposition](https://github.com/philippbosch/django-geoposition)
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [v1.0.4](https://github.com/oscarmcm/django-places/tree/v1.0.3) (2016-07-20)
[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.3...v1.0.4)
**Fixed bugs:**
- Use Django admin jQuery
## [v1.0.3](https://github.com/oscarmcm/django-places/tree/v1.0.3) (2016-06-01)
[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.2...v1.0.3)
**Fixed bugs:**
- i18n support [\#3](https://github.com/oscarmcm/django-places/issues/3)
## [v1.0.2](https://github.com/oscarmcm/django-places/tree/v1.0.2) (2016-05-12)
[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.1...v1.0.2)
## [v1.0.1](https://github.com/oscarmcm/django-places/tree/v1.0.1) (2016-05-12)
[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.0...v1.0.1)
**Fixed bugs:**
- Geocomplete is not a function [\#1](https://github.com/oscarmcm/django-places/issues/1)
**Merged pull requests:**
- Fixes \#1 Geocomplete is not a function [\#2](https://github.com/oscarmcm/django-places/pull/2) ([oscarmcm](https://github.com/oscarmcm))
## [v1.0.0](https://github.com/oscarmcm/django-places/tree/v1.0.0) (2016-04-28)
=============================
A Django app for store places with autocomplete function and a related map to the selected place.
Badges
---------
[](https://badge.fury.io/py/dj-places)
[](https://travis-ci.org/oscarmcm/django-places)
[](https://www.codacy.com/app/om-cortez-2010/django-places?utm_source=github.com&utm_medium=referral&utm_content=oscarmcm/django-places&utm_campaign=Badge_Grade)
Quickstart
----------
Install dj-places and add it to your installed apps:
$ pip install dj-places
INSTALLED_APPS = (
...
'djplaces',
...
)
Add your maps api key in your settings ( [read more here](https://developers.google.com/maps/documentation/javascript/3.exp/reference) ):
MAPS_API_KEY='YourAwesomeUltraSecretKey'
Then use it in a project:
from djplaces.fields import LocationField
place = models.CharField(max_length=250)
location = LocationField(base_field='place')
Demo
------

TODO-LIST
--------
* [ ] Write some test ASAP!
* [ ] Support Inline Admin
* [ ] Set custom zoom map value
* [ ] Custom property for lat and lng values
Running Tests
--------------
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install -r requirements-test.txt
(myenv) $ python runtests.py
Credits
---------
Special thanks to [Helmy Giacoman](https://github.com/eos87) for motivating me to make this package.
Tools used in rendering this package:
* [Cookiecutter](https://github.com/audreyr/cookiecutter)
* [cookiecutter-djangopackage](https://github.com/pydanny/cookiecutter-djangopackage)
* [jquery-geocomplete](https://github.com/ubilabs/geocomplete)
Similar Projects
------------
* [Django Location Field](https://github.com/caioariede/django-location-field)
* [Django Geoposition](https://github.com/philippbosch/django-geoposition)
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [v1.0.4](https://github.com/oscarmcm/django-places/tree/v1.0.3) (2016-07-20)
[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.3...v1.0.4)
**Fixed bugs:**
- Use Django admin jQuery
## [v1.0.3](https://github.com/oscarmcm/django-places/tree/v1.0.3) (2016-06-01)
[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.2...v1.0.3)
**Fixed bugs:**
- i18n support [\#3](https://github.com/oscarmcm/django-places/issues/3)
## [v1.0.2](https://github.com/oscarmcm/django-places/tree/v1.0.2) (2016-05-12)
[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.1...v1.0.2)
## [v1.0.1](https://github.com/oscarmcm/django-places/tree/v1.0.1) (2016-05-12)
[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.0...v1.0.1)
**Fixed bugs:**
- Geocomplete is not a function [\#1](https://github.com/oscarmcm/django-places/issues/1)
**Merged pull requests:**
- Fixes \#1 Geocomplete is not a function [\#2](https://github.com/oscarmcm/django-places/pull/2) ([oscarmcm](https://github.com/oscarmcm))
## [v1.0.0](https://github.com/oscarmcm/django-places/tree/v1.0.0) (2016-04-28)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dj-places-1.0.4.tar.gz
(5.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dj-places-1.0.4.tar.gz.
File metadata
- Download URL: dj-places-1.0.4.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c065f7368ed3f0dc1755d98e2c9ba0cab10ce818ed48e5e18637695ec8313d9c
|
|
| MD5 |
c153dc709c55c30e72a0a9f5c95aabf5
|
|
| BLAKE2b-256 |
06948ab503f17eed254e4fd28e821c786e20ee2809719aa07a6d8d05926c99d2
|
File details
Details for the file dj_places-1.0.4-py2.py3-none-any.whl.
File metadata
- Download URL: dj_places-1.0.4-py2.py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
532abf3269d7191edd48cf6012070e8544b8839d7a870e5d7975b6639550fcbc
|
|
| MD5 |
b0a46b6fdf0d2a9279f3d00ab8d7f215
|
|
| BLAKE2b-256 |
86897dc025c5411143b39b4095d9a95f584020a94436eae707d90e7eb8dc4f55
|