| 1 |
<html xmlns="http://www.w3.org/1999/xhtml" debug="true"> |
|---|
| 2 |
<head> |
|---|
| 3 |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"> |
|---|
| 4 |
<script type="text/javascript" src="OpenLayers-2.5/lib/Firebug/firebug.js"></script> |
|---|
| 5 |
<script type="text/javascript" src="OpenLayers-2.5/lib/OpenLayers.js"></script> |
|---|
| 6 |
<script type "text/javascript"> |
|---|
| 7 |
function init() { |
|---|
| 8 |
OpenLayers.loadURL('file.gml', null, null, onComplete); |
|---|
| 9 |
} |
|---|
| 10 |
function onComplete(request) { |
|---|
| 11 |
var node = OpenLayers.parseXMLString(request.responseText); |
|---|
| 12 |
if (node) { |
|---|
| 13 |
OpenLayers.Console.log('node is not null, log node and node.documentElement.localName'); |
|---|
| 14 |
OpenLayers.Console.log(node); |
|---|
| 15 |
OpenLayers.Console.log(node.documentElement.localName); |
|---|
| 16 |
} |
|---|
| 17 |
} |
|---|
| 18 |
</script> |
|---|
| 19 |
</head> |
|---|
| 20 |
<body onload="init()"> |
|---|
| 21 |
<p>Hello</p> |
|---|
| 22 |
</body> |
|---|
| 23 |
</html> |
|---|