OpenLayers OpenLayers
Show
Ignore:
Timestamp:
06/06/07 14:46:41 (2 years ago)
Author:
euzuro
Message:

bring up cosmetic changes from trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/historyControl/lib/OpenLayers/Control.js

    r2944 r3265  
    2727     * Controls can have a 'type'. The type determines the type of interactions 
    2828     * which are possible with them when they are placed into a toolbar. 
     29     *  
    2930     * @type OpenLayers.Control.TYPES 
    3031     */ 
     
    3233 
    3334    /**  This property is used for CSS related to the drawing of the Control. 
     35     *  
    3436     * @type string  
    3537     */ 
    3638    displayClass: "", 
    3739 
    38     /** 
    39      * @type boolean 
    40      */ 
     40    /** @type boolean */ 
    4141    active: null, 
    4242 
    43     /** 
    44      * @type OpenLayers.Handler 
    45      */ 
     43    /** @type OpenLayers.Handler */ 
    4644    handler: null, 
    4745 
     
    5452        // We do this before the extend so that instances can override 
    5553        // className in options. 
    56         this.displayClass = this.CLASS_NAME.replace("OpenLayers.", "ol").replace(".",""); 
     54        this.displayClass =  
     55            this.CLASS_NAME.replace("OpenLayers.", "ol").replace(".",""); 
    5756         
    5857        OpenLayers.Util.extend(this, options); 
  • sandbox/historyControl/lib/OpenLayers/Control/ArgParser.js

    r1721 r3265  
    2525     * @constructor 
    2626     *  
    27      * @param {DOMElement} element 
    28      * @param {String} base 
     27     * @param {Object} options 
    2928     */ 
    30     initialize: function(element, base) { 
     29    initialize: function(options) { 
    3130        OpenLayers.Control.prototype.initialize.apply(this, arguments); 
    3231    }, 
  • sandbox/historyControl/lib/OpenLayers/Map.js

    r3153 r3265  
    134134    numZoomLevels: 16, 
    135135 
    136     /** @type string */ 
     136    /** A pointer to a CSS file from which to load theme styles 
     137     * @type string */ 
    137138    theme: null, 
    138139 
     
    316317  /********************************************************/ 
    317318  /*                                                      */ 
    318   /*           Layers, Controls, Popup Functions          */ 
     319  /*                  Layer Functions                     */ 
    319320  /*                                                      */ 
    320321  /*     The following functions deal with adding and     */ 
    321   /*        removing Layers, Controls, and Popups         */ 
    322   /*                to and from the Map                   */ 
     322  /*        removing Layers to and from the Map           */ 
    323323  /*                                                      */ 
    324324  /********************************************************/          
     
    558558        } 
    559559    }, 
     560 
     561 
     562  /********************************************************/ 
     563  /*                                                      */ 
     564  /*                 Control Functions                    */ 
     565  /*                                                      */ 
     566  /*     The following functions deal with adding and     */ 
     567  /*        removing Controls to and from the Map         */ 
     568  /*                                                      */ 
     569  /********************************************************/          
    560570 
    561571    /** 
     
    589599    }, 
    590600     
     601  /********************************************************/ 
     602  /*                                                      */ 
     603  /*                  Popup Functions                     */ 
     604  /*                                                      */ 
     605  /*     The following functions deal with adding and     */ 
     606  /*        removing Popups to and from the Map           */ 
     607  /*                                                      */ 
     608  /********************************************************/          
     609 
    591610    /**  
    592611    * @param {OpenLayers.Popup} popup