项目作者: springload

项目描述 :
Simple Google Maps address formatter for Wagtail fields
高级语言: Python
项目地址: git://github.com/springload/wagtailgmaps.git
创建时间: 2014-12-04T23:07:31Z
项目社区:https://github.com/springload/wagtailgmaps

开源协议:MIT License

下载


wagtailgmaps PyPI

Simple Google Maps address formatter and LatLng provider for Wagtail fields.

Check out Awesome Wagtail for more awesome packages and resources from the Wagtail community.

Wagtailgmaps screenshot

Quickstart

Setting Up Your Google API Key

  1. Follow the instructions to get a key
  2. Enable the following services under API Restrictions:

Google_API_Screenshot

Installing and Configuration the Python Package

  1. Install with pip install wagtailgmaps
  2. Add wagtailgmaps to your settings.py INSTALLED_APPS section.
  3. Add some configuration in your settings.py file:

    1. # Mandatory
    2. WAGTAIL_ADDRESS_MAP_CENTER = 'Wellington, New Zealand' # It must be a properly formatted address
    3. WAGTAIL_ADDRESS_MAP_KEY = 'xxx'
    4. # Optional
    5. WAGTAIL_ADDRESS_MAP_ZOOM = 8 # See https://developers.google.com/maps/documentation/javascript/tutorial#MapOptions for more information.
    6. WAGTAIL_ADDRESS_MAP_LANGUAGE = 'ru' # See https://developers.google.com/maps/faq#languagesupport for supported languages.
  4. Use it:

    1. # myapp/models.py
    2. from django.db import models
    3. from wagtail.wagtailcore.models import Page
    4. from wagtailgmaps.edit_handlers import MapFieldPanel
    5. class MapPage(Page):
    6. # Wagtailgmaps expects a `CharField` (or any other field that renders as a text input)
    7. formatted_address = models.CharField(max_length=255)
    8. latlng_address = models.CharField(max_length=255)
    9. # Use the `MapFieldPanel` just like you would use a `FieldPanel`
    10. content_panels = Page.content_panels + [
    11. MapFieldPanel('formatted_address'),
    12. MapFieldPanel('latlng_address', latlng=True),
    13. ]
    1. # myapp/templates/myapp/map_page.html
    2. <a href="http://maps.google.com/?q={{ self.formatted_address }}">Open map (Formatted Address)</a>
    3. <a href="http://maps.google.com/?q={{ self.latlng_address }}">Open map (Lat/Long Address)</a>

Additional information

MapFieldPanel options

  • heading - A custom heading in the admin, defaults to “Location”
  • classname - Add extra css classes to the field
  • latlng - Field returns a LatLng instead of an address
  • centre - A custom override for this field
  • zoom - A custom override for this field

How the address option works under the hook

If using the address option, the field gets updated according to the Google Geocoding Service each time:

  • The map marker gets dragged and dropped into a location (dragend JS event).
  • Click happens somewhere in the map (click JS event).
  • Return key is pressed after editing the field (enterKey JS event for return key only).

Troubleshooting

When editing the model from the admin interface the affected field shows up with a map, like the screenshot above. If it doesn’t, check your browser console to make sure that there is no error related to your API key.

Development

Releases

  • Make a new branch for the release of the new version.
  • Update the CHANGELOG.
  • Update the version number in wagtailgmaps/__init__.py, following semver.
  • Make a PR and squash merge it.
  • Back on master with the PR merged, use make publish (confirm, and enter your password).
  • Finally, go to GitHub and create a release and a tag for the new version.
  • Done!