Skip to main content

This app makes it easy to display a map for any given address in Django templates. No API keys, manual geocoding, html/js copy-pasting or Django model changes are needed.

Authored by Mikhail Korobov, and some great contributors.

https://img.shields.io/pypi/v/django-easy-maps.svg https://img.shields.io/pypi/dm/django-easy-maps.svg https://img.shields.io/github/license/bashu/django-easy-maps.svg https://img.shields.io/travis/bashu/django-easy-maps.svg

Installation

Either clone this repository into your project, or install with pip install django-easy-maps

You’ll need to add easy_maps to INSTALLED_APPS in your project’s settings.py file:

import django

INSTALLED_APPS = (
    ...
    'easy_maps',
)

if django.VERSION < (1, 7):
    INSTALLED_APPS += (
        'south',
    )

Then run ./manage.py migrate to create the required database tables.

Upgrading from 0.9

Upgrading from 0.9 is likely to cause problems trying to apply a migration when the tables already exist. In this case a fake migration needs to be applied:

./manage.py migrate easy_maps 0001 --fake

Configuration

The only mandatory configuration is the EASY_MAPS_GOOGLE_MAPS_API_KEY variable:

EASY_MAPS_GOOGLE_MAPS_API_KEY = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ___0123456789'

If you need a place to center the map at when no address is inserted yet, add the latitude and longitude to the EASY_MAPS_CENTER variable in your settings.py like the following:

EASY_MAPS_CENTER = (-41.3, 32)

To use a custom geocoder set the EASY_MAPS_GEOCODE option:

# Default: 'easy_maps.geocode.google_v3'
EASY_MAPS_GEOCODE = 'example.custom_geocode'

Please see the example application. This application is used to manually test the functionalities of this package. This also serves as a good example.

You need Django 1.4 or above to run that. It might run on older versions but that is not tested.

Usage

First of all, load the easy_map_tags in every template where you want to use it:

{% load easy_maps_tags %}

Use:

{% easy_map <address> [<width> <height>] [<zoom>] [using <template_name>] %}

For example:

{% load easy_maps_tags %}

<!-- Default map with 300x400 dimensions -->
{% easy_map "Russia, Ekaterinburg, Mira 32" 300 400 %}

<!-- Variable address, custom detail level and custom template -->
{% easy_map address 200 200 5 using 'map.html' %}

The coordinates for map will be obtained using google geocoder on first access. Then they’ll be cached in DB. Django’s template caching can be used later in order to prevent DB access on each map render:

{% load easy_maps_tags cache %}

{% cache 600 my_map firm.address %}
    {% easy_map firm.address 300 400 %}
{% endcache %}

Templates

If the default map template is not sufficient then a custom map template can be used. For example:

{% easy_map address using 'map.html' %}
{% easy_map address 200 300 5 using 'map.html' %}

The template will have map (easy_maps.Address instance auto-created for passed address on first access), width, height and zoom variables. The outer template context is passed to the rendered template as well.

You can start your own template from scratch or just override some blocks in the default template.

Please refer to https://developers.google.com/maps/documentation/javascript/ for detailed Google Maps JavaScript API help.

Widgets

django-easy-maps provides a basic widget that displays a map under the address field. It can be used in the admin for map previews. For example:

from django import forms
from django.contrib import admin

from easy_maps.widgets import AddressWithMapWidget

from .models import Firm

class FirmAdmin(admin.ModelAdmin):
    class form(forms.ModelForm):
        class Meta:
            widgets = {
                'address': AddressWithMapWidget({'class': 'vTextField'})
            }

admin.site.register(Firm, FirmAdmin)

address field should be either a CharField or TextField.

Contributing

If you’ve found a bug, implemented a feature or customized the template and think it is useful then please consider contributing. Patches, pull requests or just suggestions are welcome!

License

django-easy-maps is released under the MIT license.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-easy-maps-0.9.3.tar.gz (15.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_easy_maps-0.9.3-py2.py3-none-any.whl (21.6 kB view details)

Uploaded Python 2Python 3

File details

Details for the file django-easy-maps-0.9.3.tar.gz.

File metadata

File hashes

Hashes for django-easy-maps-0.9.3.tar.gz
Algorithm Hash digest
SHA256 d35d0d10200feb71c39b0cfbdf589c663cac324153d05070ea30298b124b740a
MD5 fa50fa7f6bd4c228a0baadc37af536ea
BLAKE2b-256 4f086296ecb254e48060cbce5dd993ddd9bb7bc29fe3029b87efe99ea8ca5f74

See more details on using hashes here.

File details

Details for the file django_easy_maps-0.9.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_easy_maps-0.9.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9a89b7448871b4d43d181cabffa80e52d455fa33f8ae78fdecbccb14817550ef
MD5 b937bf39dd2c2acacfdabb5515a911fa
BLAKE2b-256 3c0fb61a5e506d4de1a258c11fb2f7d985630570cebd4eeedd8f853690003436

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page