diff options
Diffstat (limited to 'node_modules/montage')
-rw-r--r-- | node_modules/montage/ui/map.reel/map.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/montage/ui/map.reel/map.js b/node_modules/montage/ui/map.reel/map.js index 1e4f452c..c03d51c5 100644 --- a/node_modules/montage/ui/map.reel/map.js +++ b/node_modules/montage/ui/map.reel/map.js | |||
@@ -140,7 +140,7 @@ var Map = exports.Map = Montage.create(Component, /** @lends module:"montage/ui/ | |||
140 | } | 140 | } |
141 | }, | 141 | }, |
142 | 142 | ||
143 | zoom: { | 143 | zoomValue: { |
144 | value: 8 | 144 | value: 8 |
145 | }, | 145 | }, |
146 | 146 | ||
@@ -250,7 +250,7 @@ var Map = exports.Map = Montage.create(Component, /** @lends module:"montage/ui/ | |||
250 | if(!this._map) { | 250 | if(!this._map) { |
251 | var map; | 251 | var map; |
252 | var myOptions = { | 252 | var myOptions = { |
253 | zoom: this.zoom, | 253 | zoom: this.zoomValue, |
254 | center: new window.google.maps.LatLng(latLng.lat, latLng.lng), | 254 | center: new window.google.maps.LatLng(latLng.lat, latLng.lng), |
255 | mapTypeId: window.google.maps.MapTypeId.ROADMAP | 255 | mapTypeId: window.google.maps.MapTypeId.ROADMAP |
256 | }; | 256 | }; |