Displaying 1 result from an estimated 1 matches for "scalecontrolstyle".
2009 Sep 21
0
r34 committed - removed deprecated method draggable, all controls off when first creat...
...},
resizeTo: function(width, height){
@@ -50,11 +62,20 @@
this.addSmallControls();
}
}
+ if (args.scale){
+ var myOptions = {
+ scaleControl:true,
+ scaleControlOptions: {style:google.maps.ScaleControlStyle.DEFAULT}
+ };
+ map.setOptions(myOptions);
+ this.addControlsArgs.scale = true;
+ }
},
addSmallControls: function() {
var map = this.maps[this.api];
var myOptions = {
+ scrollwheel: false,...