離線地圖解決方案(一):加載瓦片地圖

當前主流的在線地圖有百度、高德、天地圖、騰訊地圖、google地圖等。針對局域網內網內脫離要脫離互聯網訪問的應用,須要下載這些主流廠商的瓦片數據。網上有不少地圖下載器軟件能夠下載地圖瓦片,能夠經過各類方式獲取到這些地圖廠商的瓦片數據。javascript

加載高德離線瓦片數據:css

加載高德街道瓦片:html

加載瓦片地圖代碼:前端

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <title>加載高德影像</title>
    <link rel="stylesheet" href="plugin/ol3/css/ol.css" type="text/css" />
    <style>
                html, body, #div_gis {
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    margin: 0;
                    font-family: "微軟雅黑";
                }
    </style>
    
    <script type="text/javascript" src="plugin/ol3/build/ol-debug.js"></script>
    <script type="text/javascript" src="js/Config.js"></script>
    <script type="text/javascript" src="js/PrivateFunction.js"></script>
</head>

<body>
    <div id="div_gis">
    </div>
</body>

</html>
<script type="text/javascript">
    LoadGaodeTileMap(1, 'div_gis', 1, 11, 8, 103.964571, 30.245677);
</script>

 

前端採用openlayers,對地圖加載進行了二次封裝,若有須要請聯繫qq:8313632java

相關文章
相關標籤/搜索