我正在尝试使用 openlayers 构建离线 Web应用程序,如下面的示例代码所示。但是,地图不会加载错误(如萤火虫所示):
Error: "https://c.tile.openstreetmap.org/4/6/6.png"
我通过其他Q / As阅读并发现我需要下载一些地图图层(图像/图块/矢量)并在本地引用它。但我想还有其他的子步骤。任何已经尝试过这样做并确切知道要为此完成的步骤的人? 我在SO Offline Geographical Maps in Web Application after converting .osm to .map中遇到了这个问题,但它没有详细解答如何设置离线地图存储库。
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="myOfflineWebAppWebContent/css/ol.css" type="text/css">
<style>
.map {
height: 400px;
width: 100%;
}
</style>
<script src="myOfflineWebAppWebContent/js/ol.js" type="text/javascript"></script>
<title>Hello Open Layers</title>
</head>
<body>
<h2>My Map</h2>
<div id="map" class="map"></div>
<script type="text/javascript">
var map = new ol.Map({
target: 'map',
layers: [
new ol.layer.Tile({
source: new ol.source.OSM()
})
],
view: new ol.View({
center: ol.proj.fromLonLat([37.41, 8.82]),
zoom: 4
})
});
</script>
</body>
</html>