svn merge sandbox/vector-2.4/@2307 sandbox/vector-2.4/@HEAD trunk/openlayers/ git-svn-id: http://svn.openlayers.org/trunk/openlayers@2803 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
34 lines
1003 B
HTML
34 lines
1003 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<style type="text/css">
|
|
#map {
|
|
width: 800px;
|
|
height: 475px;
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
<script src="../lib/OpenLayers.js"></script>
|
|
<script type="text/javascript">
|
|
function parseData(req) {
|
|
g = new OpenLayers.Format.KML();
|
|
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.body.innerHTML = html;
|
|
}
|
|
function load() {
|
|
OpenLayers.loadURL("kml/mc-search.kml", "", null, parseData);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="load()">
|
|
</body>
|
|
</html>
|