Changeset 7518
- Timestamp:
- 07/15/08 18:05:19 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/topp/trimet/lib/OpenLayers/Protocol/WFS/v1_0_0.js
r7514 r7518 170 170 typeName: (options.featureNS ? this.featurePrefix + ":" : "") + 171 171 options.featureType, 172 srsName: options. srsName|| this.srsName172 srsName: options.projection || this.srsName 173 173 } 174 174 }); sandbox/topp/trimet/lib/OpenLayers/Strategy/BBOX.js
r7496 r7518 93 93 triggerRead: function(event) { 94 94 event = event || {}; 95 96 var projection = this.layer.map.getProjectionObject(); 95 97 96 98 // create a BBOX spatial filter … … 103 105 this.bounds.top - this.bounds.bottom 104 106 ), 105 projection: this.layer.projection107 projection: projection 106 108 }); 107 109 … … 112 114 abortPrevious: true, 113 115 filter: filter, 116 projection: projection, 114 117 params: params, 115 118 callback: function(resp) {
