OpenLayers OpenLayers

Changeset 6166

Show
Ignore:
Timestamp:
02/09/08 00:09:37 (10 months ago)
Author:
ahocevar
Message:

merging 6134:HEAD from trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/ahocevar/styleMap/build/build.py

    r5635 r6166  
    1818 
    1919sourceDirectory = "../lib" 
    20 configFilename = "library.cfg" 
     20configFilename = "full.cfg" 
    2121outputFilename = "OpenLayers.js" 
    2222 
  • sandbox/ahocevar/styleMap/build/buildUncompressed.py

    r5633 r6166  
    77 
    88sourceDirectory = "../lib" 
    9 configFilename = "library.cfg" 
     9configFilename = "full.cfg" 
    1010outputFilename = "OpenLayers.js" 
    1111 
  • sandbox/ahocevar/styleMap/lib/OpenLayers.js

    r6152 r6166  
    156156            "OpenLayers/Control/Panel.js", 
    157157            "OpenLayers/Control/SelectFeature.js", 
     158            "OpenLayers/Control/NavigationHistory.js", 
    158159            "OpenLayers/Geometry.js", 
    159160            "OpenLayers/Geometry/Rectangle.js", 
  • sandbox/ahocevar/styleMap/lib/OpenLayers/Control/SelectFeature.js

    r6152 r6166  
    261261        this.layer.drawFeature(feature, selectStyle); 
    262262        this.layer.events.triggerEvent("featureselected", {feature: feature}); 
     263        this.layer.events.triggerEvent("featureselected", {feature: feature}); 
    263264        this.onSelect(feature); 
    264265    }, 
  • sandbox/ahocevar/styleMap/lib/OpenLayers/Renderer/VML.js

    r6080 r6166  
    411411     */ 
    412412    drawCircle: function(node, geometry, radius) { 
     413        if (typeof radius == "undefined") { 
     414            radius = 0; 
     415        } 
    413416        if(!isNaN(geometry.x)&& !isNaN(geometry.y)) { 
    414417            var resolution = this.getResolution(); 
  • sandbox/ahocevar/styleMap/tests/list-tests.html

    r6152 r6166  
    8585    <li>Control/test_ModifyFeature.html</li> 
    8686    <li>Control/test_MousePosition.html</li> 
     87    <li>Control/test_NavigationHistory.html</li> 
    8788    <li>Control/test_MouseToolbar.html</li> 
    8889    <li>Control/test_Navigation.html</li> 
  • sandbox/ahocevar/styleMap/theme/default/style.css

    r6025 r6166  
    111111} 
    112112 
     113.olControlNavigationHistoryPreviousItemActive {  
     114   background-image: url("img/view_previous_on.png"); 
     115   background-repeat: no-repeat; 
     116   width:  24px; 
     117   height: 24px; 
     118} 
     119.olControlNavigationHistoryPreviousItemInactive {  
     120   background-image: url("img/view_previous_off.png"); 
     121   background-repeat: no-repeat; 
     122   width:  24px; 
     123   height: 24px; 
     124} 
     125.olControlNavigationHistoryNextItemActive {  
     126   background-image: url("img/view_next_on.png"); 
     127   background-repeat: no-repeat; 
     128   width:  24px; 
     129   height: 24px; 
     130} 
     131.olControlNavigationHistoryNextItemInactive {  
     132   background-image: url("img/view_next_off.png"); 
     133   background-repeat: no-repeat; 
     134   width:  24px; 
     135   height: 24px; 
     136} 
     137 
    113138.olControlNavToolbar .olControlNavigationItemActive {  
    114139  background-image: url("img/panning-hand-on.png");