Changeset 9532
- Timestamp:
- 07/01/09 01:29:34 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/bartvde/sosclient/openlayers/lib/OpenLayers/Format/SOS.js
r9396 r9532 32 32 }, 33 33 34 maxValues: 1,34 maxValues: 25, 35 35 36 36 /** … … 119 119 */ 120 120 write: function(name, params) { 121 console.log(params);122 121 var root = this.writeNode(name, params); 123 122 this.setAttributeNS( … … 311 310 return node; 312 311 }, 312 "DescribeSensor": function(options) { 313 var node = this.createElementNSPlus("DescribeSensor", { 314 attributes: { 315 version: this.VERSION, 316 service: 'SOS', 317 outputFormat: options.outputFormat 318 } 319 }); 320 this.writeNode("procedure", options, node); 321 return node; 322 }, 323 "procedure": function(options) { 324 var node = this.createElementNSPlus("procedure", {value: options.procedure}); 325 return node; 326 }, 313 327 "responseFormat": function(options) { 314 328 var node = this.createElementNSPlus("responseFormat", {value: this.responseFormat});
