Fixed #9130 -- Fixed typo in comment, thanks scel.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10220 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
3989a7ae11
commit
5ff1703f41
|
@ -21,7 +21,7 @@ class OpenLayersWidget(Textarea):
|
|||
|
||||
# Defaulting the WKT value to a blank string -- this
|
||||
# will be tested in the JavaScript and the appropriate
|
||||
# interfaace will be constructed.
|
||||
# interface will be constructed.
|
||||
self.params['wkt'] = ''
|
||||
|
||||
# If a string reaches here (via a validation error on another
|
||||
|
@ -46,7 +46,7 @@ class OpenLayersWidget(Textarea):
|
|||
# Transforming the geometry to the projection used on the
|
||||
# OpenLayers map.
|
||||
srid = self.params['srid']
|
||||
if value.srid != srid:
|
||||
if value.srid != srid:
|
||||
try:
|
||||
ogr = value.ogr
|
||||
ogr.transform(srid)
|
||||
|
@ -55,14 +55,14 @@ class OpenLayersWidget(Textarea):
|
|||
wkt = ''
|
||||
else:
|
||||
wkt = value.wkt
|
||||
|
||||
|
||||
# Setting the parameter WKT with that of the transformed
|
||||
# geometry.
|
||||
self.params['wkt'] = wkt
|
||||
|
||||
return loader.render_to_string(self.template, self.params,
|
||||
context_instance=geo_context)
|
||||
|
||||
|
||||
def map_options(self):
|
||||
"Builds the map options hash for the OpenLayers template."
|
||||
|
||||
|
@ -74,8 +74,8 @@ class OpenLayersWidget(Textarea):
|
|||
|
||||
# An array of the parameter name, the name of their OpenLayers
|
||||
# counterpart, and the type of variable they are.
|
||||
map_types = [('srid', 'projection', 'srid'),
|
||||
('display_srid', 'displayProjection', 'srid'),
|
||||
map_types = [('srid', 'projection', 'srid'),
|
||||
('display_srid', 'displayProjection', 'srid'),
|
||||
('units', 'units', str),
|
||||
('max_resolution', 'maxResolution', float),
|
||||
('max_extent', 'maxExtent', 'bounds'),
|
||||
|
|
Loading…
Reference in New Issue