Ticket #559: classnames.patch
| File classnames.patch, 1.9 kB (added by tschaub, 2 years ago) |
|---|
-
lib/OpenLayers/Format.js
old new 29 29 */ 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 }; -
lib/OpenLayers/Format/GeoRSS.js
old new 103 103 path += geometry.lat + " " + geometry.lon + " "; 104 104 } 105 105 return document.createTextNode(path); 106 } 106 }, 107 108 /** @final @type String */ 109 CLASS_NAME: "OpenLayers.Format.GeoRSS" 110 107 111 }); -
lib/OpenLayers/Format/GML.js
old new 429 429 coordinatesNode.appendChild(txtNode); 430 430 431 431 return coordinatesNode; 432 } 432 }, 433 434 /** @final @type String */ 435 CLASS_NAME: "OpenLayers.Format.GML" 436 433 437 }); -
lib/OpenLayers/Format/KML.js
old new 164 164 return p; 165 165 }, 166 166 167 /** @final @type String */ 167 168 CLASS_NAME: "OpenLayers.Format.KML" 168 169 169 170 }); -
lib/OpenLayers/Format/WFS.js
old new 152 152 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 });
