[Mapbender-commits] r1382 - branches/mapbender_sld/http/javascripts

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Wed May 30 07:30:42 EDT 2007


Author: mschulz
Date: 2007-05-30 07:30:42 -0400 (Wed, 30 May 2007)
New Revision: 1382

Modified:
   branches/mapbender_sld/http/javascripts/map_obj.js
Log:
merged changes for sld stuff

Modified: branches/mapbender_sld/http/javascripts/map_obj.js
===================================================================
--- branches/mapbender_sld/http/javascripts/map_obj.js	2007-05-30 09:01:32 UTC (rev 1381)
+++ branches/mapbender_sld/http/javascripts/map_obj.js	2007-05-30 11:30:42 UTC (rev 1382)
@@ -21,7 +21,8 @@
 			gui_wms_featureinfoformat,
 			gui_wms_exceptionformat,
 			gui_wms_epsg,
-			gui_wms_visible){
+			gui_wms_visible,
+			gui_wms_sldurl){
 					wms[wms.length] = new wms_const( 
 					wms_id,
 					wms_version,
@@ -35,7 +36,8 @@
 					gui_wms_featureinfoformat,
 					gui_wms_exceptionformat,
 					gui_wms_epsg,
-					parseInt(gui_wms_visible));
+					parseInt(gui_wms_visible),
+					gui_wms_sldurl);
 					wms_layer[wms.length - 1] = [];
 }
 //the wms constructor
@@ -52,7 +54,8 @@
 			gui_wms_featureinfoformat,
 			gui_wms_exceptionformat,
 			gui_wms_epsg,
-			gui_wms_visible){
+			gui_wms_visible,
+			gui_wms_sldurl){
    
 	if (!wms_id) {
 		var id_ok = false;
@@ -88,7 +91,9 @@
 	this.gui_maxy = [];
 
 // opacity version 
-	this.gui_wms_mapopacity = 1;      
+	this.gui_wms_mapopacity = 1;
+	// sld version
+	this.gui_wms_sldurl = gui_wms_sldurl;      
 }
 
 /**



More information about the Mapbender_commits mailing list