Changeset 1614
- Timestamp:
- 10/05/06 16:46:58 (2 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Layer/Google.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Layer/Google.js
r1588 r1614 122 122 this.gmap = new GMap2( this.div ); 123 123 this.gmap.disableDragging(); 124 125 // this causes the GMap to set itself to Map's center/zoom 124 125 // move the ToS and branding stuff up to the pane 126 // thanks a *mil* Erik for thinking of this 127 var termsOfUse = this.div.lastChild; 128 this.div.removeChild(termsOfUse); 129 this.pane.appendChild(termsOfUse); 130 131 var poweredBy = this.div.lastChild; 132 this.div.removeChild(poweredBy); 133 this.pane.appendChild(poweredBy); 134 135 // this causes the GMap to set itself to Map's center/zoom 126 136 this.moveTo(); 127 137 … … 129 139 this.loadWarningMessage(); 130 140 } 141 131 142 }, 132 143
