antv地图在有底图时高亮

initMap() {
            chinaScene = new Scene({
                id: "mapChina",
                map: new Map({
                    style: "dark",
                    center: [103.99130938786305, 33.982243853450086],
                    zoom: 3.4,
                    pitch: 20,
                }),
                logoVisible: false,

            });
            // chinaScene.setRotation(0);
            chinaScene.setMapStatus({
                dragEnable: false, // 是否允许地图拖拽
                keyboardEnable: false, // 是否允许形键盘事件
                doubleClickZoom: false, // 双击放大
                zoomEnable: false, // 滚动缩放
                rotateEnable: false // 旋转
            })

            // chinaScene.setZoom(12);
            // chinaScene.fitBounds([
            //     [112, 32],
            //     [112, 32],
            // ]);
            chinaScene.on("loaded", () => {
                let lineDown, lineUp, textLayer;
                fetch(
                    // window.location.origin + window.location.pathname + "/json/china.json"
                    // this.chinaJson
                    'https://gw.alipayobjects.com/os/bmw-prod/ecd1aaac-44c0-4232-b66c-c0ced76d5c7d.json'
                    // "https://gw.alipayobjects.com/os/bmw-prod/d6da7ac1-8b4f-4a55-93ea-e81aa08f0cf3.json"
                )
                    .then((res) => res.json())
                    .then((data) => {

                    });
                const texts = [];
                // data.features.map((option) => {
                this.chinaJson.features.map((option) => {

                    const { name, center } = option.properties;
                    const [lng, lat] = center;
                    texts.push({ name, lng, lat });
                    return "";
                });
                textLayer = new PointLayer({ zIndex: 9999 })
                    .source(texts, {
                        parser: {
                            type: "json",
                            x: "lng",
                            y: "lat",
                        },
                    })
                    .shape("name", "text")
                    .size(18)
                    .color("#fff")
                    .style({
                        textAnchor: "center", // 文本相对锚点的位置 center|left|right|top|bottom|top-left
                        spacing: 2, // 字符间距
                        padding: [1, 1], // 文本包围盒 padding [水平,垂直],影响碰撞检测结果,避免相邻文本靠的太近
                        stroke: "#0ff", // 描边颜色
                        strokeWidth: 0.2, // 描边宽度
                        raisingHeight: 100000,
                        textAllowOverlap: true,
                        opacity: 1,
                    });
                chinaScene.addLayer(textLayer);
                lineUp = new LineLayer({ zIndex: 10 })
                    .source(this.chinaJson)
                    .shape("line")
                    .color("#6ce8fb")
                    .size(1.2)
                    .style({
                        raisingHeight: 106500,
                    });
                chinaScene.addLayer(lineUp);
                return "";
            });
            const layer = new PolygonLayer({
                // zIndex: -10
            })
                .source(this.chinaJson)
                .size(100000)
                .shape('extrude')
                .color('#fff')
                .select({
                    color: "#c8ab87"
                })
                .style({
                    mapTexture: this.provinceImg, //如果想使用纹理贴图,shap必须为extrude
                    // imagelayer: this.provinceImg, 
                    heightfixed: true,
                    pickLight: true,
                    sourceColor: "#333", //抬高高度的颜色
                    targetColor: "#fff",
                    opacity: 0.8,
                    // raisingHeight: 100000,
                    // zIndex: -10
                });
            layer.on("click", e => {
                console.log(e, '---e1');
                this.openPopup()
                this.getProviceData(e.feature.properties.adcode)
            })

            // const layer = new PolygonLayer({
            //     // zIndex: 1,
            // })
            //     .source(this.chinaJson)
            //     .size(0)
            //     .shape('fill')
            //     .color('#c0c0c0')
            //     .select({
            //         color: "#ff0"
            //     })
            //     .style({
            //         mapTexture: this.provinceImg, //如果想使用纹理贴图,shap必须为extrude
            //         heightfixed: true,
            //         pickLight: true,
            //         sourceColor: "#333", //抬高高度的颜色
            //         targetColor: "#fff",
            //         opacity: 0.8,
            //         zIndex: -10
            //     });
            // layer.on("click", v => {
            //     console.log(v, '---e');
            // })

            const layerColor = new PolygonLayer({
                zIndex: 9,
            })
                .source(this.chinaJson)
                .scale('density', {
                    type: 'quantile',
                })
                .shape('fill')
                .size(10000)

                .color('density', this.mapcolor)
                .style({
                    opacity: 0.8,
                    raisingHeight: 100000,

                })
            // layerColor.on("click", e => {
            //     console.log(e, '---e1');
            //     // this.openPopup()
            //     // this.getProviceData(e.feature.properties.adcode)
            // })
            const layerShadow = new PolygonLayer({
                zIndex: 10,
            })
                .source(this.chinaJson)
                // .scale('density', {
                //     type: 'quantile',
                // })
                .shape('fill')
                .size(1)

                .color('#1c302c')
                .style({
                    opacity: 1,
                    raisingHeight: -500000,

                })
            chinaScene.addLayer(layerColor);
            // chinaScene.addLayer(imgLayer);

            chinaScene.addLayer(layer);
            chinaScene.addLayer(layerShadow);


            // layerColor.on("click", v => {
            //     console.log(v, '---e');

            // })
        },

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值