Changeset 9901
- Timestamp:
- 12/16/09 18:38:13 (9 months ago)
- Files:
-
- trunk/openlayers/examples/vector-formats.html (modified) (3 diffs)
- trunk/openlayers/lib/OpenLayers.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Format/Atom.js (added)
- trunk/openlayers/tests/Format/Atom.html (added)
- trunk/openlayers/tests/list-tests.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/examples/vector-formats.html
r9480 r9901 79 79 gml2: new OpenLayers.Format.GML.v2(gmlOptionsIn), 80 80 gml3: new OpenLayers.Format.GML.v3(gmlOptionsIn), 81 kml: new OpenLayers.Format.KML(kmlOptionsIn) 81 kml: new OpenLayers.Format.KML(kmlOptionsIn), 82 atom: new OpenLayers.Format.Atom(in_options) 82 83 }, 83 84 'out': { … … 87 88 gml2: new OpenLayers.Format.GML.v2(gmlOptionsOut), 88 89 gml3: new OpenLayers.Format.GML.v3(gmlOptionsOut), 89 kml: new OpenLayers.Format.KML(out_options) 90 kml: new OpenLayers.Format.KML(out_options), 91 atom: new OpenLayers.Format.Atom(out_options) 90 92 } 91 93 }; … … 184 186 <select name="formatType" id="formatType"> 185 187 <option value="geojson" selected="selected">GeoJSON</option> 188 <option value="atom">Atom</option> 186 189 <option value="kml">KML</option> 187 190 <option value="georss">GeoRSS</option> trunk/openlayers/lib/OpenLayers.js
r9898 r9901 222 222 "OpenLayers/Format/GML/v2.js", 223 223 "OpenLayers/Format/GML/v3.js", 224 "OpenLayers/Format/Atom.js", 224 225 "OpenLayers/Format/KML.js", 225 226 "OpenLayers/Format/GeoRSS.js", trunk/openlayers/tests/list-tests.html
r9898 r9901 47 47 <li>Filter/Spatial.html</li> 48 48 <li>Format.html</li> 49 <li>Format/Atom.html</li> 49 50 <li>Format/ArcXML.html</li> 50 51 <li>Format/ArcXML/Features.html</li>
