[Mapbox GL]切换交互方式

        使能或者去使能地图的UI处理器


<!DOCTYPE html>
<html>
<head>
    <meta charset='utf-8' />
    <title></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.29.0/mapbox-gl.js'></script>
    <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.29.0/mapbox-gl.css' rel='stylesheet' />
    <style>
        body { margin:0; padding:0; }
        #map { position:absolute; top:0; bottom:0; width:100%; }
    </style>
</head>
<body>

<style>
    .listing-group {
        font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
        font-weight: 600;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1;
        border-radius: 3px;
        max-width: 20%;
        color: #fff;
    }

    .listing-group input[type=checkbox]:first-child + label {
        border-radius: 3px 3px 0 0;
    }

    .listing-group label:last-child {
        border-radius: 0 0 3px 3px;
        border: none;
    }

    .listing-group input[type=checkbox] {
        display: none;
    }

    .listing-group input[type=checkbox] + label {
        background-color: #3386c0;
        display: block;
        cursor: pointer;
        padding: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    }

    .listing-group input[type=checkbox] + label {
        background-color: #3386c0;
        text-transform: capitalize;
    }

    .listing-group input[type=checkbox] + label:hover,
    .listing-group input[type=checkbox]:checked + label {
        background-color: #4ea0da;
    }

    .listing-group input[type=checkbox]:checked + label:before {
        content: '✔';
        margin-right: 5px;
    }
</style>
<div id='map'></div>
<nav id='listing-group' class='listing-group'>
    <input type='checkbox' id='scrollZoom' checked='checked'>
    <label for='scrollZoom'>Scroll zoom</label>
    <input type='checkbox' id='boxZoom' checked='checked'>
    <label for='boxZoom'>Box zoom</label>
    <input type='checkbox' id='dragRotate' checked='checked'>
    <label for='dragRotate'>Drag rotate</label>
    <input type='checkbox' id='dragPan' checked='checked'>
    <label for='dragPan'>Drag pan</label>
    <input type='checkbox' id='keyboard' checked='checked'>
    <label for='keyboard'>Keyboard</label>
    <input type='checkbox' id='doubleClickZoom' checked='checked'>
    <label for='doubleClickZoom'>Double click zoom</label>
    <input type='checkbox' id='touchZoomRotate' checked='checked'>
    <label for='touchZoomRotate'>Touch zoom rotate</label>
</nav>

<script>
mapboxgl.accessToken = '<your access token here>';
var map = new mapboxgl.Map({
    container: 'map',
    style: 'mapbox://styles/mapbox/streets-v9',
    center: [-77.04, 38.907],
    zoom: 11.15
});

document.getElementById('listing-group').addEventListener('change', function(e) {  /* change事件表示当内容改变时触发 */
    var handler = e.target.id;  /* e.target.id获取事件目标的id属性 */
    if (e.target.checked) {
        map[handler].enable();  /* enable()/disable()使能/去使能handler */
    } else {
        map[handler].disable(); /* 这里使用map数组,enable/disable是handler的方法,这里猜测map保存的是对应hander,具体有待研究 */
    }
});
</script>

</body>
</html>


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值