- Author:
- summerisgone
- Posted:
- July 14, 2010
- Language:
- Python
- Version:
- Not specified
- Score:
- 4 (after 4 ratings)
Almost copied from snipplet http://djangosnippets.org/snippets/752/, but I used Google Maps API v3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | from django import forms
from django.db import models
from django.utils.safestring import mark_safe
DEFAULT_WIDTH = 300
DEFAULT_HEIGHT = 200
DEFAULT_LAT = 55.16
DEFAULT_LNG = 61.4
class LocationWidget(forms.TextInput):
def __init__(self, *args, **kw):
self.map_width = kw.get("map_width", DEFAULT_WIDTH)
self.map_height = kw.get("map_height", DEFAULT_HEIGHT)
super(LocationWidget, self).__init__(*args, **kw)
self.inner_widget = forms.widgets.HiddenInput()
def render(self, name, value, *args, **kwargs):
if value is None:
lat, lng = DEFAULT_LAT, DEFAULT_LNG
else:
if isinstance(value, unicode):
a, b = value.split(',')
else:
a, b = value
lat, lng = float(a), float(b)
js = '''
<script type="text/javascript">
//<![CDATA[
var map_%(name)s;
function savePosition_%(name)s(point)
{
var input = document.getElementById("id_%(name)s");
input.value = point.lat().toFixed(6) + "," + point.lng().toFixed(6);
map_%(name)s.panTo(point);
}
function load_%(name)s() {
var point = new google.maps.LatLng(%(lat)f, %(lng)f);
var options = {
zoom: 13,
center: point,
mapTypeId: google.maps.MapTypeId.ROADMAP
// mapTypeControl: true,
// navigationControl: true
};
map_%(name)s = new google.maps.Map(document.getElementById("map_%(name)s"), options);
var marker = new google.maps.Marker({
map: map_%(name)s,
position: new google.maps.LatLng(%(lat)f, %(lng)f),
draggable: true
});
google.maps.event.addListener(marker, 'dragend', function(mouseEvent) {
savePosition_%(name)s(mouseEvent.latLng);
});
google.maps.event.addListener(map_%(name)s, 'click', function(mouseEvent){
marker.setPosition(mouseEvent.latLng);
savePosition_%(name)s(mouseEvent.latLng);
});
}
$(document).ready(function(){
load_%(name)s();
});
//]]>
</script>
''' % dict(name=name, lat=lat, lng=lng)
html = self.inner_widget.render("%s" % name, "%f,%f" % (lat, lng), dict(id='id_%s' % name))
html += '<div id="map_%s" style="width: %dpx; height: %dpx"></div>' % (name, self.map_width, self.map_height)
return mark_safe(js + html)
class Media:
js = (
'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js',
'http://maps.google.com/maps/api/js?sensor=false',
)
class LocationFormField(forms.CharField):
def clean(self, value):
if isinstance(value, unicode):
a, b = value.split(',')
else:
a, b = value
lat, lng = float(a), float(b)
return "%f,%f" % (lat, lng)
class LocationField(models.CharField):
def formfield(self, **kwargs):
defaults = {'form_class': LocationFormField}
defaults.update(kwargs)
defaults['widget'] = LocationWidget
return super(LocationField, self).formfield(**defaults)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 5 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
I seriously love you. This just saved me a whole hunk of my day.
#
Yes, thank you.
For noobs, here is a more detailed breakdown of how to use the widget in the Django admin:
https://gist.github.com/1196589
#
Please login first before commenting.