Metadata-Version: 2.0
Name: geodjango-tigerleaflet
Version: 0.1.0
Summary: Leaflet for Geodjango with US TIGER State and County data
Home-page: https://github.com/jlillest/geodjango-tigerleaflet
Author: Jon Lillestolen
Author-email: jlillest@gmail.com
License: MIT
Keywords: Leaflet for Geodjango with US TIGER State and County data
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: django-model-utils (>=2.0)

=============================
geodjango-tigerleaflet
=============================

Leaflet setup for US Tiger State and County data

Quickstart
----------

Install geodjango-tigerleaflet::

    pip install geodjango-tigerleaflet

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'tigerleaflet',
        ...
    )

Add geodjango-tigerleaflet's URL patterns:

.. code-block:: python

    from tigerleaflet import urls as tigerleaflet_urls


    urlpatterns = [
        ...
        url(r'^', include(tigerleaflet_urls)),
        ...
    ]

Features
--------

* GeoJson urls for easy map creation
* example Leaflet pages for displaying and navigating through state/county data

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.1.0 (2016-12-21)
++++++++++++++++++

* First release on PyPI.


