Changes between Initial Version and Version 1 of Ticket #9210


Ignore:
Timestamp:
Sep 25, 2008, 2:17:10 PM (16 years ago)
Author:
jbronn
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9210

    • Property Keywords google zoom gis added
    • Property Owner changed from nobody to jbronn
  • Ticket #9210 – Description

    initial v1  
    1 in the google map template js file( django/contrib/gis/templates/gis/google/js/google-map.js)
     1In the google map template js file( django/contrib/gis/templates/gis/google/js/google-map.js)
    22
    3 map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds))
     3`map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds))`
    44
    55should be changed to:
    66
    7 map.setCenter(bounds.getCenter(), {{ zoom }})
     7`map.setCenter(bounds.getCenter(), {{ zoom }})`
    88
    9 otherwise when use GoogleMap(zoom=x, ...) with zoom params, zoom does not effected actually .
     9otherwise when use !GoogleMap(zoom=x, ...) with zoom params, zoom does not effected actually .
Back to Top