Project

General

Profile

1
/*
2
Description: Display the OpenLS Geocoder response as html
3
Author:      Steven Ottens AT geodan.nl
4
Licence:     LGPL as per: http://www.gnu.org/copyleft/lesser.html
5
$Id: OpenLSResponse.js 2546 2007-01-23 12:07:39Z gjvoosten $
6
*/
7

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

    
11
/**
12
 * Render the response froma Geocoding request
13
 * @constructor
14
 * @base WidgetBaseXSL
15
 * @author Steven Ottens AT geodan nl
16
 * @param widgetNode  The widget's XML object node from the configuration document.
17
 * @param model       The model object that this widget belongs to.
18
 */
19
function OpenLSResponse(widgetNode, model) {
20
  WidgetBaseXSL.apply(this, new Array(widgetNode, model));
21
}
(94-94/145)