mapbox地图入门案例

<!DOCTYPE html>
<html>

<head>
    <meta charset='utf-8' />
    <title>Mapbox显示地图案例</title>
    <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
    <script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.js'></script>
    <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.37.0/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>
        mapboxgl.accessToken = '<your access token here>';
        var map = new mapboxgl.Map({
            container: 'map', // container id
            style: 'mapbox://styles/mapbox/streets-v9', //stylesheet location
            center: [116.28, 39.54], // starting position 北京的经纬度坐标
            zoom: 3, // starting zoom
        });
    </script>

</body>

</html>

 

先有案例,才好入门mapbox。

 

来自:mapbox中国 官网

https://www.mapbox.cn/mapbox-gl-js/examples/

相关文章:

  • 2022-12-23
  • 2021-11-19
  • 2021-12-05
  • 2021-08-22
  • 2021-10-22
  • 2021-06-08
  • 2022-12-23
猜你喜欢
  • 2021-09-29
  • 2022-01-25
  • 2021-06-01
  • 2022-12-23
  • 2021-04-18
  • 2022-01-13
  • 2022-02-09
相关资源
相似解决方案