Changeset 719
- Timestamp:
- 03/30/07 00:50:47 (5 years ago)
- Location:
- spinoffs/twMaps/twMapsSampleAppPylons
- Files:
-
- 2 modified
-
development.ini (modified) (1 diff)
-
twmapssampleapppylons/controllers/maps.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
spinoffs/twMaps/twMapsSampleAppPylons/development.ini
r705 r719 26 26 twMaps.center_y = 45 27 27 twMaps.center_x = -123 28 twMaps.width = 300px 29 twMaps.height = 300px -
spinoffs/twMaps/twMapsSampleAppPylons/twmapssampleapppylons/controllers/maps.py
r705 r719 13 13 self.map_opts = { 14 14 'api_key': config['twMaps.gmap.api_key'], 15 'zoom': config.get('twMaps.gmap.zoom', 14), 15 16 'center_y': config.get('twMaps.center_y', 0), 16 17 'center_x': config.get('twMaps.center_x', 0), 17 'zoom': config.get('twMaps.gmap.zoom', 14), 18 'width': config.get('twMaps.width', '400px'), 19 'height': config.get('twMaps.height', '400px'), 18 20 } 19 21