2

私はこの例を実行しようとしています:OpenlayersのKMLレイヤーはローカルホストでローカルに機能しません。私はいくつかの調査を行ったところ、この人にも同様の問題があることがわかりました。ただし、ファイルがローカルにリンクされている場合、この問題が発生する可能性があると彼は述べました。したがって、ローカルでリンクされていない場合は問題ないと思います。openlayers Webサイト( http://openlayers.org/dev/examples/kml-layer.html)の例から直接javascriptファイルを使用しようとしましたが、機能しません。

問題は、ベースマップは表示されますが、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とInternetExplorerにしかアクセスできず、可能であればホスティングせずにこれをテストできる必要があります。

ありがとう

4

1 に答える 1

2

問題を見つけました。ページを再ホストするときにリンクしていなかったstyles.kmlファイルがありました。このファイルを読み込んだ後、kmlが表示されました。

しかし、なぜ私が彼らのjsファイルを使って同じことをすることができないのか私はまだ理解していません。

于 2012-10-30T13:52:04.473 に答える