<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <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) {
          var g = new OpenLayers.Format.GML.v2({featureType: 'KGNAT.VKUNSTWERK', 
              featureNS: 'http://mapserver.gis.umn.edu/mapserver', geometryName: 'geometry'}); 
          features = g.read(req.responseText);
          console.log(features);
        }
        function load() {
            OpenLayers.loadURL("gml/kgn.xml", "", null, parseData);
        }
    </script>
  </head>

  <body onload="load()">
      <h1 id="title">GML Parser Example</h1>

      <div id="tags"></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>