Changeset 2876
- Timestamp:
- 03/24/07 19:07:30 (2 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Format.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Format/GML.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Format/GeoRSS.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Format/KML.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Format/WFS.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Format.js
r2803 r2876 30 30 write: function(features) { 31 31 alert("Write not implemented."); 32 } 32 }, 33 34 /** @final @type String */ 35 CLASS_NAME: "OpenLayers.Format" 36 33 37 }; trunk/openlayers/lib/OpenLayers/Format/GML.js
r2803 r2876 430 430 431 431 return coordinatesNode; 432 } 432 }, 433 434 /** @final @type String */ 435 CLASS_NAME: "OpenLayers.Format.GML" 436 433 437 }); trunk/openlayers/lib/OpenLayers/Format/GeoRSS.js
r2803 r2876 104 104 } 105 105 return document.createTextNode(path); 106 } 106 }, 107 108 /** @final @type String */ 109 CLASS_NAME: "OpenLayers.Format.GeoRSS" 110 107 111 }); trunk/openlayers/lib/OpenLayers/Format/KML.js
r2803 r2876 165 165 }, 166 166 167 /** @final @type String */ 167 168 CLASS_NAME: "OpenLayers.Format.KML" 168 169 trunk/openlayers/lib/OpenLayers/Format/WFS.js
r2803 r2876 153 153 destroy: function() { 154 154 this.layer = null; 155 } 155 }, 156 157 /** @final @type String */ 158 CLASS_NAME: "OpenLayers.Format.WFS" 159 156 160 });
