[OpenLayers-Commits] r11903 - trunk/openlayers/examples
commits-20090109 at openlayers.org
commits-20090109 at openlayers.org
Thu Apr 21 18:05:03 EDT 2011
Author: tschaub
Date: 2011-04-21 15:05:02 -0700 (Thu, 21 Apr 2011)
New Revision: 11903
Removed:
trunk/openlayers/examples/GMLParser.html
Log:
This example doesn't appear to work. We've got other examples that demonstrate the use of the newer GML parsers.
Deleted: trunk/openlayers/examples/GMLParser.html
===================================================================
--- trunk/openlayers/examples/GMLParser.html 2011-04-21 22:02:48 UTC (rev 11902)
+++ trunk/openlayers/examples/GMLParser.html 2011-04-21 22:05:02 UTC (rev 11903)
@@ -1,47 +0,0 @@
-<html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <title>OpenLayers GML Parser</title>
- <link rel="stylesheet" href="../theme/default/style.css" type="text/css" />
- <link rel="stylesheet" href="style.css" type="text/css" />
- <script src="../lib/OpenLayers.js"></script>
- <script type="text/javascript">
- function parseData(req) {
- g = new OpenLayers.Format.GML();
- html = ""
- features = g.read(req.responseText);
- for(var feat in features) {
- html += "Feature: Geometry: "+ features[feat].geometry+",";
- html += "<ul>";
- for (var j in features[feat].attributes) {
- html += "<li>"+j+":"+features[feat].attributes[j]+"</li>";
- }
- html += "</ul>"
- }
- document.getElementById('output').innerHTML = html;
- }
- function load() {
- OpenLayers.loadURL("gml/owls.xml", "", null, parseData);
- }
- </script>
- </head>
- <body onload="load()">
- <h1 id="title">GML Parser Example</h1>
-
- <div id="tags">
- GML, parse, parsing
- </div>
-
- <p id="shortdesc">
- Demonstrate the operation of the GML parser.
- </p>
-
- <div id="output"></div>
-
- <div id="docs">
- This script reads data from a GML file and parses out the coordinates, appending them to a HTML string with markup tags.
- This markup is dumped to an element in the page.
- </div>
- </body>
-</html>
More information about the Commits
mailing list