Convert Layer/UntiledWMS to Layer/WMS/Untiled. Update example. Update include list. Update exclude list for singlefile build.
git-svn-id: http://svn.openlayers.org/trunk/openlayers@675 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -11,5 +11,5 @@ OpenLayers/Layer/KaMap.js
|
||||
OpenLayers/Layer/Google.js
|
||||
OpenLayers/Layer/Yahoo.js
|
||||
OpenLayers/Layer/VirtualEarth.js
|
||||
OpenLayers/Layer/UntiledWMS.js
|
||||
OpenLayers/Layer/WMS/Untiled.js
|
||||
OpenLayers/Control/KeyboardDefaults.js
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
function init(){
|
||||
var map = new OpenLayers.Map('map');
|
||||
|
||||
var ol_wms = new OpenLayers.Layer.UntiledWMS( "OpenLayers WMS",
|
||||
var ol_wms = new OpenLayers.Layer.WMS.Untiled( "OpenLayers WMS",
|
||||
"http://labs.metacarta.com/wms/vmap0?", {layers: 'basic'} );
|
||||
|
||||
map.addLayers([ol_wms]);
|
||||
|
||||
@@ -65,11 +65,11 @@ if (typeof(_OPENLAYERS_SFL_) == "undefined") {
|
||||
// "OpenLayers/Layer/Yahoo.js",
|
||||
"OpenLayers/Layer/Grid.js",
|
||||
"OpenLayers/Layer/KaMap.js",
|
||||
"OpenLayers/Layer/UntiledWMS.js",
|
||||
"OpenLayers/Layer/Markers.js",
|
||||
"OpenLayers/Layer/Text.js",
|
||||
"OpenLayers/Layer/WMS.js",
|
||||
"OpenLayers/Layer/WFS.js",
|
||||
"OpenLayers/Layer/WMS/Untiled.js",
|
||||
"OpenLayers/Popup/Anchored.js",
|
||||
"OpenLayers/Popup/AnchoredBubble.js",
|
||||
"OpenLayers/Control.js",
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
/**
|
||||
* @class
|
||||
*/
|
||||
OpenLayers.Layer.UntiledWMS = Class.create();
|
||||
OpenLayers.Layer.UntiledWMS.prototype =
|
||||
OpenLayers.Layer.WMS.Untiled = Class.create();
|
||||
OpenLayers.Layer.WMS.Untiled.prototype =
|
||||
Object.extend( new OpenLayers.Layer.Grid(), {
|
||||
|
||||
/** @final @type hash */
|
||||
@@ -93,5 +93,5 @@ OpenLayers.Layer.UntiledWMS.prototype =
|
||||
}
|
||||
},
|
||||
/** @final @type String */
|
||||
CLASS_NAME: "OpenLayers.Layer.UntiledWMS"
|
||||
CLASS_NAME: "OpenLayers.Layer.WMS.Untiled"
|
||||
});
|
||||
Reference in New Issue
Block a user