Changeset 2869
- Timestamp:
- 03/23/07 11:36:25 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/emanuel/animatedZooming/lib/OpenLayers/Layer.js
r2866 r2869 925 925 */ 926 926 setLoadendVisibility: function() { 927 // set flag that zoom animation finished 928 this.map.zoomanimationActive = false; 929 927 930 // function for map only; not for overviewmap! 928 931 if (this.map.div.id == "map") { … … 933 936 } 934 937 } 935 // set flag that zoom animation finished 936 this.map.zoomanimationActive = false; 938 937 939 }, 938 940 sandbox/emanuel/animatedZooming/lib/OpenLayers/Map.js
r2846 r2869 145 145 * 146 146 * @type int */ 147 slideWait: 0,147 slideWait: 1, 148 148 149 149 /** power used to calculate width of slide steps … … 1402 1402 1403 1403 // set zoomanimation flag to false _manually_ 1404 // (only for baselayers without onimageload events, f.e. imagelayer); 1404 // (only for baselayers without onimageload events, f.e. imagelayer 1405 // and for ie, where the loadend event doesn't works correctly); 1405 1406 // for all other layers it calls automatically from 1406 1407 // loadendevent in layers.js 1407 if (this.baseLayer.CLASS_NAME.match("OpenLayers.Layer.Image")){ 1408 if (this.baseLayer.CLASS_NAME.match("OpenLayers.Layer.Image") || 1409 (navigator.appName == "Microsoft Internet Explorer") ){ 1408 1410 this.zoomanimationActive = false; 1409 1411 } 1410 1411 1412 }, 1412 1413
