Changeset 7027
- Timestamp:
- 01/18/08 10:49:51 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/gis/django/contrib/gis/maps/google/gmap.py
r6108 r7027 19 19 center_lat=0.0, center_lon=0.0, zoom=1, 20 20 dom_id='map', load_func='gmap_load', 21 kml_urls=[], template='gis/google/js/google-map.js'): 21 kml_urls=[], template='gis/google/js/google-map.js', 22 extra_context={}): 22 23 23 24 # The Google Maps API Key defined in the settings will be used … … 68 69 'zoom' : zoom, 69 70 } 71 params.update(extra_context) 70 72 self.js = render_to_string(template, params) 71 73
