Metadata-Version: 1.1
Name: django-googlemap
Version: 0.5
Summary: django-googlemap is a simple Django app to show the google map from ip addresses.
Home-page: https://github.com/mygu/django-googlemap
Author: Mingyu Gu
Author-email: mingyugu0410@gmail.com
License: BSD License
Description: ================
        django-googlemap
        ================
        
        django-googlemap is a simple Django app to show the google map from ip addresses.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Install django-googlemap::
        
            pip install django-googlemap
        
        2. Add "django-googlemap" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'googlemap',
            )
        
        3. Add urls.py::
        
            urlpatterns = patterns('',
                ...
                url(r'^googlemap/', include('googlemap.urls')),
            )
        
        3. In your template html::
        
            {% load gmap_tags %}
            
            <!--
                <ip_list> is a list of ip addresses
                <width> default is auto
                <height> default is 400px
                <show_input> default if false
              -->
            {% ip_on_map <ip_List> <width> <height> True %}
        
        4. Settings(optional)::
        
            # Download maxmind free geo database from http://dev.maxmind.com/geoip/legacy/geolite/
        
            MAXMIND_CITY_DB_PATH = 'Your data file path'
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
