Opened 16 years ago

Last modified 16 years ago

#9210 closed

zoom does not effected, when use GoogleMap(zoom=x, ...) with zoom params.. — at Version 1

Reported by: kitlycol@… Owned by: jbronn
Component: GIS Version: 1.0
Severity: Keywords: google zoom gis
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by jbronn)

In the google map template js file( django/contrib/gis/templates/gis/google/js/google-map.js)

map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds))

should be changed to:

map.setCenter(bounds.getCenter(), {{ zoom }})

otherwise when use GoogleMap(zoom=x, ...) with zoom params, zoom does not effected actually .

Change History (1)

comment:1 by jbronn, 16 years ago

Description: modified (diff)
Keywords: google zoom gis added
Owner: changed from nobody to jbronn
Note: See TracTickets for help on using tickets.
Back to Top