HTML offline map with local tiles via Leaflet(通过 Leaflet 使用本地图块的 HTML 离线地图)
问题描述
有没有办法使用 HTML 和 JavaScript 完全离线显示给定区域的地图?我正在寻找一种适合移动设备(阅读支持 Cordova)的解决方案.
Is there a way to display a map for a given area completely offline using HTML and JavaScript? I am looking for a mobile-friendly (read Cordova-enabled) solution.
推荐答案
在 这篇博文.我已经从中编译了一个完整的代码示例.步骤如下:
There is an elegant solution for this problem in this blog post. I have compiled a full code example from it. Here are the steps:
1.创建地图图块
- 下载Mobile Atlas Creator
- 创建一个具有 OSMdroid ZIP 格式的新图集
- 进行地图和缩放选择,将您的选择添加到地图集
- 点击创建图集"
- 解压图集文件
- 您的图块具有以下格式:{atlas_name}/{z}/{x}/{y}.png({z} 代表缩放")
- download Mobile Atlas Creator
- create a new atlas with OSMdroid ZIP format
- make map and zoom selection, add your selection to the atlas
- click "Create atlas"
- unzip the atlas file
- your tiles have this format: {atlas_name}/{z}/{x}/{y}.png ({z} stands for "zoom")
<强>2.设置 HTML 和 JavaScript
- 将 atlas 文件夹复制到 HTML 根目录
- 下载leaflet.js和leaflet.css并复制到html根目录
- 使用以下代码创建 index.html
- 调整起始坐标并在 var mymap 定义的行上缩放
- 将 atlasName 更改为您的文件夹名称,设置所需的 maxZoom
- copy your atlas folder to your HTML root
- download leaflet.js and leaflet.css and copy them to html root
- create index.html with the code below
- adjust starting coordinates and zoom on the line where var mymap is defined
- change atlasName to your folder name, set your desired maxZoom
3.你都准备好了!享受吧!
- 在浏览器中运行 index.html
<!DOCTYPE html> <html> <head> <title>Leaflet offline map</title> <link rel="stylesheet" charset="utf-8" href="leaflet.css" /> <script type="text/javascript" charset="utf-8" src="leaflet.js"></script> <script> function onLoad() { var mymap = L.map('mapid').setView([50.08748, 14.42132], 16); L.tileLayer('atlasName/{z}/{x}/{y}.png', { maxZoom: 16 }).addTo(mymap); } </script> </head> <body onload="onLoad();"> <div id="mapid" style="height: 500px;"></div> </body> </html>
这篇关于通过 Leaflet 使用本地图块的 HTML 离线地图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:通过 Leaflet 使用本地图块的 HTML 离线地图
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01