OpenLayers OpenLayers

Changeset 1659

Show
Ignore:
Timestamp:
10/06/06 13:28:01 (2 years ago)
Author:
sderle
Message:

Changes to Layer.Google and to default theme to move the GMaps chrome over to the lower left side to yield up the valuable lower right corner for our own stuff.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/lib/OpenLayers/Layer/Google.js

    r1658 r1659  
    129129            this.pane.appendChild(poweredBy); 
    130130            poweredBy.className = "olLayerGooglePoweredBy gmnoprint"; 
     131            poweredBy.style.left = ""; 
     132            poweredBy.style.bottom = ""; 
    131133 
    132134            var termsOfUse = this.div.lastChild; 
     
    134136            this.pane.appendChild(termsOfUse); 
    135137            termsOfUse.className = "olLayerGoogleCopyright"; 
     138            termsOfUse.style.right = ""; 
     139            termsOfUse.style.bottom = ""; 
    136140 
    137141            // this causes the GMap to set itself to Map's center/zoom 
  • trunk/openlayers/theme/default/style.css

    r1642 r1659  
    1010    display: block; 
    1111    position: absolute; 
     12}  
     13.olLayerGoogleCopyright { 
     14    left: 2px; 
     15    bottom: 2px;   
    1216} 
     17.olLayerGooglePoweredBy { 
     18    left: 2px; 
     19    bottom: 15px;    
     20}