[Mapbox GL]从一个GeoJSON资源添加多个几何图形

        从相同的GeoJSON资源添加一个多边形和圆形layer,通过filter属性对数据进行过滤,不同的layer仅仅显示自己感兴趣的数据


<!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.28.0/mapbox-gl.js'></script>
    <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.28.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>                    /* div容器 */
<script>
mapboxgl.accessToken = '<your access token here>';
var map = new mapboxgl.Map({
    container: "map",
    style: "mapbox://styles/mapbox/outdoors-v9",
    center: [-121.403732, 40.492392],
    zoom: 10
});

map.on("load", function() {
    map.addSource("national-park", {
        "type": "geojson",           /* geojson类型资源 */
        "data": {                    /* geojson数据 */
            "type": "FeatureCollection",
            "features": [{
                "type": "Feature",
                "geometry": {
                    "type": "Polygon",
                    "coordinates": [
                        [
                          [-121.353637, 40.584978],
                          [-121.284551, 40.584758],
                          [-121.275349, 40.541646],
                          [-121.246768, 40.541017],
                          [-121.251343, 40.423383],
                          [-121.326870, 40.423768],
                          [-121.360619, 40.434790],
                          [-121.363694, 40.409124],
                          [-121.439713, 40.409197],
                          [-121.439711, 40.423791],
                          [-121.572133, 40.423548],
                          [-121.577415, 40.550766],
                          [-121.539486, 40.558107],
                          [-121.520284, 40.572459],
                          [-121.487219, 40.550822],
                          [-121.446951, 40.563190],
                          [-121.370644, 40.563267],
                          [-121.353637, 40.584978]
                        ]
                    ]
                }
            }, {
                "type": "Feature",
                "geometry": {
                    "type": "Point",
                    "coordinates": [-121.415061, 40.506229]
                }
            }, {
                "type": "Feature",
                "geometry": {
                    "type": "Point",
                    "coordinates": [-121.505184, 40.488084]
                }
            }, {
                "type": "Feature",
                "geometry": {
                    "type": "Point",
                    "coordinates": [-121.354465, 40.488737]
                }
            }]
        }
    });

    map.addLayer({
        "id": "park-boundary",
        "type": "fill",           /* fill类型一般用来表示一个面,一般较大 */
        "source": "national-park",
        "paint": {
            "fill-color": "#888888", /* 填充的颜色 */
            "fill-opacity": 0.4      /* 透明度 */
        },
        "filter": ["==", "$type", "Polygon"]  /* filter过滤器将type等于Polygon的数据显示在layer上 */
    });

    map.addLayer({
        "id": "park-volcanoes",
        "type": "circle",          /* circle类型表示一个圆,一般比较小 */
        "source": "national-park",
        "paint": {
            "circle-radius": 6,        /* 圆的直径,单位像素 */
            "circle-color": "#B42222"  /* 圆的颜色 */
        },
        "filter": ["==", "$type", "Point"], /* filter过滤器将type等于Point的数据显示在layer上 */
    });
});
</script>

</body>
</html>

原文: https://www.mapbox.com/mapbox-gl-js/example/multiple-geometries/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值