Project

General

Profile

1
/*
2
License: LGPL as per: http://www.gnu.org/copyleft/lesser.html
3
$Id: SelectAllMapLayers.js 2546 2007-01-23 12:07:39Z gjvoosten $
4
*/
5

    
6
// Ensure this object's dependancies are loaded.
7
mapbuilder.loadScript(baseDir+"/widget/WidgetBaseXSL.js");
8

    
9
/**
10
 * Link to load the WMS Capabilities doc as a context document.
11
 * @constructor
12
 * @base WidgetBaseXSL
13
 * @param widgetNode  The widget's XML object node from the configuration document.
14
 * @param model       The model object that this widget belongs to.
15
 */
16
function SelectAllMapLayers(widgetNode, model) {
17
  WidgetBaseXSL.apply(this,new Array(widgetNode, model));
18
}
(103-103/145)