Mapbox 공백 맵 추가, 로 딩 시간 감소

7242 단어 자바 scriptmapbox
mapbox 서버 가 외국 에 있 기 때문에 개발 할 때 로드 가 느 릴 수 있 고 배경 지도 와 무관 할 때 가 많 습 니 다. 이 때 는 빈 지 도 를 불 러 와 로드 속 도 를 높 여 개발 효율 을 높 일 수 있 습 니 다.코드 는 다음 과 같 습 니 다.https://blog.aigisss.com/posts/e1a3a842.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>Add an image</title>
    <meta
      name="viewport"
      content="initial-scale=1,maximum-scale=1,user-scalable=no"
    />
    <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
    <script src="https://api.tiles.mapbox.com/mapbox-gl-js/v0.53.1/mapbox-gl.js"></script>
    <link
      href="https://api.tiles.mapbox.com/mapbox-gl-js/v0.53.1/mapbox-gl.css"
      rel="stylesheet"
    />
    <style>
      body {
        margin: 0;
        padding: 0;
      }
      #map {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
      }
    </style>
  </head>
  <body>
    <div id="map"></div>
    <script>
      var blankStyle = {
        version: 8,
        name: "BlankMap",
        sources: {},
        layers: [
			{
        	id: 'background',
        	type: 'background',
        	paint: { 'background-color': '#08294A' } /*      */
      		}
		]
      };

      var map = new mapboxgl.Map({
        container: "map",
        zoom: 3,
        center: [0, 0],
        style: blankStyle
      });
    </script>
  </body>
</html>

좋은 웹페이지 즐겨찾기