GithubHelp home page GithubHelp logo

lbgm2011 / django_gmapsfield Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bocoup/django_gmapsfield

0.0 2.0 0.0 167 KB

A Google Maps field type for the django web framework

License: GNU General Public License v2.0

Nu 0.06% Erlang 2.92% Python 39.15% JavaScript 57.87%

django_gmapsfield's Introduction

django_gmapsfield

Django Google Maps Field is a robust way to customize and display a Google Map in Django, and use it as a UI for selecting/displaying location information in the Django admin.

Developed By Tim Branyen, Bocoup LLC for Community Planit on behalf of Engagement Game Labs

Features

This project is currently under development and has not yet reached a beta phase. It should be treated and used as alpha within development environments. Features will be added as the host project work continues.

So far several features exist:

  • Custom admin site field.
    • Specify a JSON-formatted defaults
  • Custom public template filter
  • Customizable properties:
    • Zoom
    • Width/Height
    • Center coordinates

Simple to use:

Installation

Its simple to install - use this command to upgrade as well:

python setup.py install

Or

easy_install django_gmapsfield

/settings.py

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    ...
    'gmapsfield', # Make sure to register this
    ...
)

/urls.py

# Note: the following approach is non-standand, while it remains functional
# there are many disadvantages that django 1.3 static file handling will
# correct.

# Add this to serve correct admin js
(r'^admin/gmapsfield/admin/(?P<file>.*)$', 'gmapsfield.views.serve'),

# Optionally symlink this folder to your admin media path

/models.py

from gmapsfield.fields import GoogleMapsField

from django.db import models
from django.contrib import admin

class Test(models.Model):
    map = GoogleMapsField()

    # Can optionally specify defaults via JSON string
    #map2 = GoogleMapsField(default="{ coordinates: [-40, 50], zoom: 10, size: [400, 200] }")

admin.site.register(Test)

/views.py

from demo.map.models import Test

from django.template import RequestContext, loader
from django.http import HttpResponse

def index(request):
    template = loader.get_template("index.html")

    # Grab the first map if one exists - for purposes of example 
    test = (Test.objects.all() and Test.objects.all()[0]) or { "map": { show: "No maps defined" } }

    return HttpResponse(template.render(RequestContext(request, {
        "test": test
    })))

/template.html

<!-- Required to view result in a template -->
{% load gmap %}

<!-- Will display the actual map -->
{{ test.map|show }}

<!-- Includes the necessary scripts on the page, place anywhere, but only once and do not forget! -->
{% gmap_includes %}

Development Notes:

  • 1/04/11: Updated path to serve admin.js to be called admin instead of public.
  • 1/19/11: Two new settings added GMAP_JQUERY and GMAP_API which are string urls pointing to the respective resources. Fixed bug with dumpdata. Can now set global defaults in models via JSON.

django_gmapsfield's People

Contributors

tbranyen avatar d3f0 avatar lbgm2011 avatar peppelorum avatar nosovsh avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.