Changeset 675
- Timestamp:
- 06/22/06 11:59:23 (2 years ago)
- Files:
-
- trunk/openlayers/build/library.cfg (modified) (1 diff)
- trunk/openlayers/examples/notile.html (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/WMS (added)
- trunk/openlayers/lib/OpenLayers/Layer/WMS/Untiled.js (moved) (moved from trunk/openlayers/lib/OpenLayers/Layer/UntiledWMS.js) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/build/library.cfg
r673 r675 12 12 OpenLayers/Layer/Yahoo.js 13 13 OpenLayers/Layer/VirtualEarth.js 14 OpenLayers/Layer/ UntiledWMS.js14 OpenLayers/Layer/WMS/Untiled.js 15 15 OpenLayers/Control/KeyboardDefaults.js trunk/openlayers/examples/notile.html
r672 r675 14 14 var map = new OpenLayers.Map('map'); 15 15 16 var ol_wms = new OpenLayers.Layer. UntiledWMS( "OpenLayers WMS",16 var ol_wms = new OpenLayers.Layer.WMS.Untiled( "OpenLayers WMS", 17 17 "http://labs.metacarta.com/wms/vmap0?", {layers: 'basic'} ); 18 18 trunk/openlayers/lib/OpenLayers.js
r672 r675 66 66 "OpenLayers/Layer/Grid.js", 67 67 "OpenLayers/Layer/KaMap.js", 68 "OpenLayers/Layer/UntiledWMS.js",69 68 "OpenLayers/Layer/Markers.js", 70 69 "OpenLayers/Layer/Text.js", 71 70 "OpenLayers/Layer/WMS.js", 72 71 "OpenLayers/Layer/WFS.js", 72 "OpenLayers/Layer/WMS/Untiled.js", 73 73 "OpenLayers/Popup/Anchored.js", 74 74 "OpenLayers/Popup/AnchoredBubble.js", trunk/openlayers/lib/OpenLayers/Layer/WMS/Untiled.js
r674 r675 6 6 * @class 7 7 */ 8 OpenLayers.Layer. UntiledWMS= Class.create();9 OpenLayers.Layer. UntiledWMS.prototype =8 OpenLayers.Layer.WMS.Untiled = Class.create(); 9 OpenLayers.Layer.WMS.Untiled.prototype = 10 10 Object.extend( new OpenLayers.Layer.Grid(), { 11 11 … … 94 94 }, 95 95 /** @final @type String */ 96 CLASS_NAME: "OpenLayers.Layer. UntiledWMS"96 CLASS_NAME: "OpenLayers.Layer.WMS.Untiled" 97 97 });
