Changeset 6166
- Timestamp:
- 02/09/08 00:09:37 (10 months ago)
- Files:
-
- sandbox/ahocevar/styleMap/build/build.py (modified) (1 diff)
- sandbox/ahocevar/styleMap/build/buildUncompressed.py (modified) (1 diff)
- sandbox/ahocevar/styleMap/examples/navigation-history.html (copied) (copied from trunk/openlayers/examples/navigation-history.html)
- sandbox/ahocevar/styleMap/lib/OpenLayers.js (modified) (1 diff)
- sandbox/ahocevar/styleMap/lib/OpenLayers/Control/NavigationHistory.js (copied) (copied from trunk/openlayers/lib/OpenLayers/Control/NavigationHistory.js)
- sandbox/ahocevar/styleMap/lib/OpenLayers/Control/SelectFeature.js (modified) (1 diff)
- sandbox/ahocevar/styleMap/lib/OpenLayers/Renderer/VML.js (modified) (1 diff)
- sandbox/ahocevar/styleMap/tests/Control/test_NavigationHistory.html (copied) (copied from trunk/openlayers/tests/Control/test_NavigationHistory.html)
- sandbox/ahocevar/styleMap/tests/list-tests.html (modified) (1 diff)
- sandbox/ahocevar/styleMap/theme/default/img/view_next_off.png (copied) (copied from trunk/openlayers/theme/default/img/view_next_off.png)
- sandbox/ahocevar/styleMap/theme/default/img/view_next_on.png (copied) (copied from trunk/openlayers/theme/default/img/view_next_on.png)
- sandbox/ahocevar/styleMap/theme/default/img/view_previous_off.png (copied) (copied from trunk/openlayers/theme/default/img/view_previous_off.png)
- sandbox/ahocevar/styleMap/theme/default/img/view_previous_on.png (copied) (copied from trunk/openlayers/theme/default/img/view_previous_on.png)
- sandbox/ahocevar/styleMap/theme/default/style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/ahocevar/styleMap/build/build.py
r5635 r6166 18 18 19 19 sourceDirectory = "../lib" 20 configFilename = " library.cfg"20 configFilename = "full.cfg" 21 21 outputFilename = "OpenLayers.js" 22 22 sandbox/ahocevar/styleMap/build/buildUncompressed.py
r5633 r6166 7 7 8 8 sourceDirectory = "../lib" 9 configFilename = " library.cfg"9 configFilename = "full.cfg" 10 10 outputFilename = "OpenLayers.js" 11 11 sandbox/ahocevar/styleMap/lib/OpenLayers.js
r6152 r6166 156 156 "OpenLayers/Control/Panel.js", 157 157 "OpenLayers/Control/SelectFeature.js", 158 "OpenLayers/Control/NavigationHistory.js", 158 159 "OpenLayers/Geometry.js", 159 160 "OpenLayers/Geometry/Rectangle.js", sandbox/ahocevar/styleMap/lib/OpenLayers/Control/SelectFeature.js
r6152 r6166 261 261 this.layer.drawFeature(feature, selectStyle); 262 262 this.layer.events.triggerEvent("featureselected", {feature: feature}); 263 this.layer.events.triggerEvent("featureselected", {feature: feature}); 263 264 this.onSelect(feature); 264 265 }, sandbox/ahocevar/styleMap/lib/OpenLayers/Renderer/VML.js
r6080 r6166 411 411 */ 412 412 drawCircle: function(node, geometry, radius) { 413 if (typeof radius == "undefined") { 414 radius = 0; 415 } 413 416 if(!isNaN(geometry.x)&& !isNaN(geometry.y)) { 414 417 var resolution = this.getResolution(); sandbox/ahocevar/styleMap/tests/list-tests.html
r6152 r6166 85 85 <li>Control/test_ModifyFeature.html</li> 86 86 <li>Control/test_MousePosition.html</li> 87 <li>Control/test_NavigationHistory.html</li> 87 88 <li>Control/test_MouseToolbar.html</li> 88 89 <li>Control/test_Navigation.html</li> sandbox/ahocevar/styleMap/theme/default/style.css
r6025 r6166 111 111 } 112 112 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 113 138 .olControlNavToolbar .olControlNavigationItemActive { 114 139 background-image: url("img/panning-hand-on.png");
