Changes between Version 3 and Version 4 of MapBuidlerIntegration

Show
Ignore:
Timestamp:
03/16/07 06:01:44 (6 years ago)
Author:
crschmidt
Comment:

add code, improve CSS

Legend:

Unmodified
Added
Removed
Modified
  • MapBuidlerIntegration

    v3 v4  
    6868.olControlPanel div { 
    6969  margin:5px; 
     70  width:20px; 
     71  height:20px; 
    7072  background-color:red; 
    7173 
     
    7981} 
    8082}}} 
     83 
     84How to write it in code: 
     85 
     86{{{ 
     87var panel = new OpenLayers.Control.Panel(); 
     88panel.addControls([new ZoomOut()]); 
     89map.addControl(panel); 
     90}}}