我试图在本地运行此示例:KML layer in Openlayers doesn't work on localhost。我做了一些研究,发现这个人有类似的问题。但他提到如果文件在本地链接,则会出现此问题。因此我假设如果他们没有在本地联系我应该没事。我试过直接从openlayers网站上的一个例子中使用javascript文件:http://openlayers.org/dev/examples/kml-layer.html但它不起作用。
问题是我可以看到底图,但kml文件不会显示在地图上。
我在jsfiddle上放了一个例子:http://jsfiddle.net/Hn5pG/
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<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">
<link rel="stylesheet" href="http://openlayers.org/dev/theme/default/style.csss" type="text/css">
<link rel="stylesheet" href="http://openlayers.org/dev/examples/style.css" type="text/css">
</head>
<body>
<h1 id="title">KML Layer Example</h1>
<div id="tags">KML</div>
<p id="shortdesc">
Demonstrates loading and displaying a KML file on top of a basemap.
</p>
<div id="map" class="smallmap"></div>
<div id="docs">
<p>
A vector layer can be populated with features from a KML document
by configuring the layer with an HTTP protocol that points to the
KML document and is configured with a KML format for parsing features.
The fixed strategy is used to load all features at once.
</p>
<p>
View the <a href="kml-layer.js" target="_blank">kml-layer.js</a>
source to see how this is done.
</p>
</div>
<script src="http://openlayers.org/dev/OpenLayers.js"></script>
<script src="http://openlayers.org/dev/examples/kml-layer.js"></script>
</body>
</html>
我误解了什么吗?我只能在工作中访问firefox和Internet Explorer,并且如果可能的话,需要能够在不托管的情况下对其进行测试。
由于
答案 0 :(得分:2)
我找到了这个问题。在重新托管页面时,我没有链接到的styles.kml文件。加载此文件后,显示kml。
我仍然不明白为什么我不能使用他们的js文件做同样的事情。