Changeset 6393
- Timestamp:
- 02/28/08 03:12:56 (8 months ago)
- Files:
-
- sandbox/crschmidt/demo/examples/pan-zoom-panels.html (added)
- sandbox/crschmidt/demo/lib/OpenLayers.js (modified) (1 diff)
- sandbox/crschmidt/demo/lib/OpenLayers/Control/PanButton.js (added)
- sandbox/crschmidt/demo/lib/OpenLayers/Control/PanPanel.js (added)
- sandbox/crschmidt/demo/lib/OpenLayers/Control/ZoomInButton.js (added)
- sandbox/crschmidt/demo/lib/OpenLayers/Control/ZoomOutButton.js (added)
- sandbox/crschmidt/demo/lib/OpenLayers/Control/ZoomPanel.js (added)
- sandbox/crschmidt/demo/theme/default/img/east-mini.png (copied) (copied from sandbox/crschmidt/demo/img/east-mini.png)
- sandbox/crschmidt/demo/theme/default/img/north-mini.png (copied) (copied from sandbox/crschmidt/demo/img/north-mini.png)
- sandbox/crschmidt/demo/theme/default/img/south-mini.png (copied) (copied from sandbox/crschmidt/demo/img/south-mini.png)
- sandbox/crschmidt/demo/theme/default/img/west-mini.png (copied) (copied from sandbox/crschmidt/demo/img/west-mini.png)
- sandbox/crschmidt/demo/theme/default/img/zoom-minus-mini.png (copied) (copied from sandbox/crschmidt/demo/img/zoom-minus-mini.png)
- sandbox/crschmidt/demo/theme/default/img/zoom-plus-mini.png (copied) (copied from sandbox/crschmidt/demo/img/zoom-plus-mini.png)
- sandbox/crschmidt/demo/theme/default/img/zoom-world-mini.png (copied) (copied from sandbox/crschmidt/demo/img/zoom-world-mini.png)
- sandbox/crschmidt/demo/theme/default/style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/crschmidt/demo/lib/OpenLayers.js
r6313 r6393 203 203 "OpenLayers/Control/MouseToolbar.js", 204 204 "OpenLayers/Control/NavToolbar.js", 205 "OpenLayers/Control/PanPanel.js", 206 "OpenLayers/Control/PanButton.js", 207 "OpenLayers/Control/ZoomInButton.js", 208 "OpenLayers/Control/ZoomOutButton.js", 209 "OpenLayers/Control/ZoomPanel.js", 205 210 "OpenLayers/Control/EditingToolbar.js", 206 211 "OpenLayers/Lang.js", sandbox/crschmidt/demo/theme/default/style.css
r6177 r6393 231 231 filter: alpha(opacity=50); 232 232 } 233 234 .olControlPanPanel { 235 top: 10px; 236 left: 5px; 237 } 238 239 .olControlPanPanel div { 240 height: 18px; 241 width: 18px; 242 cursor: pointer; 243 position: absolute; 244 } 245 246 .olControlPanPanel .olControlPanButtonNorthItemInactive { 247 top: 0px; 248 left: 9px; 249 background-image: url("img/north-mini.png"); 250 } 251 .olControlPanPanel .olControlPanButtonSouthItemInactive { 252 top: 36px; 253 left: 9px; 254 background-image: url("img/south-mini.png"); 255 } 256 .olControlPanPanel .olControlPanButtonWestItemInactive { 257 position: absolute; 258 top: 18px; 259 left: 0px; 260 background-image: url("img/west-mini.png"); 261 } 262 .olControlPanPanel .olControlPanButtonEastItemInactive { 263 top: 18px; 264 left: 18px; 265 background-image: url("img/east-mini.png"); 266 } 267 268 .olControlZoomPanel { 269 top: 71px; 270 left: 14px; 271 } 272 273 .olControlZoomPanel div { 274 position: absolute; 275 height: 18px; 276 width: 18px; 277 cursor: pointer; 278 } 279 280 .olControlZoomPanel .olControlZoomInButtonItemInactive { 281 top: 0px; 282 left: 0px; 283 background-image: url("img/zoom-plus-mini.png"); 284 } 285 286 .olControlZoomPanel .olControlZoomToMaxExtentItemInactive { 287 top: 18px; 288 left: 0px; 289 background-image: url("img/zoom-world-mini.png"); 290 } 291 292 .olControlZoomPanel .olControlZoomOutButtonItemInactive { 293 top: 36px; 294 left: 0px; 295 background-image: url("img/zoom-minus-mini.png"); 296 }
