[Mapbox GL]高亮包含相似数据的特性

        鼠标悬停在某个郡上面时,高亮使用相同郡名的其他郡

<!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>
.map-overlay {
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.10);
    border-radius: 3px;
    position: absolute;
    width: 25%;
    top: 10px;
    left: 10px;
    padding: 10px;
    display: none;
}
</style>

<div id='map'></div>
<div id='map-overlay' class='map-overlay'></div>

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

var overlay = document.getElementById('map-overlay');

// Create a popup, but don't add it to the map yet.
var popup = new mapboxgl.Popup({
    closeButton: false
});

map.on('load', function() {
    // Add the source to query. In this example we're using
    // county polygons uploaded as vector tiles
    map.addSource('counties', {
        "type": "vector",
        "url": "mapbox://mapbox.82pkq93d"
    });

    map.addLayer({
        "id": "counties",
        "type": "fill",
        "source": "counties",
        "source-layer": "original",
        "paint": {
            "fill-outline-color": "rgba(0,0,0,0.1)",  /* 轮廓颜色 */
            "fill-color": "rgba(0,0,0,0.1)"           /* 填充颜色 */
        }
    }, 'place-city-sm'); // Place polygon under these labels.

    map.addLayer({
        "id": "counties-highlighted",
        "type": "fill",
        "source": "counties",
        "source-layer": "original",
        "paint": {
            "fill-outline-color": "#484896",
            "fill-color": "#6e599f",
            "fill-opacity": 0.75        /* 填充透明度 */
        },
        "filter": ["in", "COUNTY", ""]  /* 数据过滤器 */
    }, 'place-city-sm'); // Place polygon under these labels.

    map.on('mousemove', function(e) {   /* mousemove 鼠标指针移动时发生 */
        var features = map.queryRenderedFeatures(e.point, {    /* queryRenderedFeatures  ([geometry], [parameters]):在特定的几何形状内查询满足条件的可视化的GeoJSON特性对象数组  */
            layers: ['counties']
        });

        // Change the cursor style as a UI indicator.
        map.getCanvas().style.cursor = features.length ? 'pointer' : '';  /* 设置鼠标样式 */

        // Remove things if no feature was found.
        if (!features.length) {
            popup.remove();
            map.setFilter('counties-highlighted', ['in', 'COUNTY', '']);  /* 更新数据过滤器 */
            overlay.style.display = 'none';       /* 隐藏该标签 */
            return;
        }

        // Single out the first found feature on mouseove.
        var feature = features[0];

        // Query the counties layer visible in the map. Use the filter
        // param to only collect results that share the same county name.
        var relatedFeatures = map.querySourceFeatures('counties', {    /* querySourceFeatures  (sourceID, [parameters]):在GeoJSON source或者矢量瓦片内查询满足条件的GeoJSON特性对象数组 */
            sourceLayer: 'original',
            filter: ['in', 'COUNTY', feature.properties.COUNTY]  /* ["in", key, v0, ..., vn] set inclusion: feature[key] ∈ {v0, ..., vn} */
        });

        // Render found features in an overlay.
        overlay.innerHTML = '';

        // Total the population of all features
        var populationSum = relatedFeatures.reduce(function(memo, feature) {
            return memo + feature.properties.population;
        }, 0);

        var title = document.createElement('strong');
        title.textContent = feature.properties.COUNTY + ' (' + relatedFeatures.length + ' found)';  /* 更新文本内容 */

        var population = document.createElement('div');
        population.textContent = 'Total population: ' + populationSum.toLocaleString();

        overlay.appendChild(title);
        overlay.appendChild(population);
        overlay.style.display = 'block';

        // Add features that share the same county name to the highlighted layer.
        map.setFilter('counties-highlighted', ['in', 'COUNTY', feature.properties.COUNTY]);   /* 更新高亮layer的过滤器,显示相关数据 */

        // Display a popup with the name of the county
        popup.setLngLat(e.lngLat)
            .setText(feature.properties.COUNTY)
            .addTo(map);
    });
});
</script>

</body>
</html>

原文:https://www.mapbox.com/mapbox-gl-js/example/query-similar-features/


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值