ZhangXianQiang
2024-04-18 1edfee5cc92ade87c31c3dd0a88f3bc6b48db568
src/views/screen/components/screen-map-three/experience/world/map.js
@@ -2,67 +2,110 @@
import * as d3 from 'd3';
import mapData from '@/assets/map/zigong2.json';
import textureMap from '@/assets/map/texture/map_texture.jpg';
import textureMapImage from '@/assets/map/texture/gz-map.jpg';
import textureMapFxImage from '@/assets/map/texture/gz-map-fx.jpg';
import gsap from 'gsap';
// 地图深度
const MAP_DEPTH = 0.2;
const projection = d3.geoMercator().center([104.779307, 29.33924]).translate([0, 0, 0]);
const raycaster = new THREE.Raycaster();
export default class Map {
    constructor(experience) {
        this.experience = experience;
        this.scene = this.experience.scene;
        this.material = null;
        this.camera = this.experience.camera;
        this.provinceMeshList = [];
        this.textureLoader = new THREE.TextureLoader();
        this.setTexture();
        this.operationData(mapData);
        setTimeout(() => {
            this.enterAnimation();
        }, 500);
    }
    setTexture() {
        const textureMap = this.textureLoader.load(textureMapImage);
        const textureMapFx = this.textureLoader.load(textureMapFxImage);
        textureMap.wrapS = textureMapFx.wrapS = THREE.RepeatWrapping;
        textureMap.wrapT = textureMapFx.wrapT = THREE.RepeatWrapping;
        textureMap.flipY = textureMapFx.flipY = false;
        textureMap.rotation = textureMapFx.rotation = THREE.MathUtils.degToRad(45);
        const scale = 0.128;
        textureMap.repeat.set(scale, scale);
        textureMapFx.repeat.set(scale, scale);
        this.topFaceMaterial = new THREE.MeshPhongMaterial({
            map: textureMap,
            // color: 0xb4eeea,
            color: 0xb3fffa,
            combine: THREE.MultiplyOperation,
            transparent: true,
            opacity: 1,
        });
        this.sideMaterial = new THREE.MeshLambertMaterial({
            color: 0x123024,
            transparent: true,
            opacity: 0.9,
        });
    }
    /**
     * 解析json数据,并绘制地图多边形
     * @param {*} jsondata 地图数据
     */
    operationData(jsondata) {
        const loader = new THREE.TextureLoader();
        loader.load(textureMap,
            (texture) => {
                this.material = new THREE.MeshBasicMaterial({
                    map: texture
                });
        this.map = new THREE.Group();
                this.map = new THREE.Object3D();
                // geo信息
                const features = jsondata.features;
                features.forEach((feature) => {
                    // 单个省份 对象
                    const province = new THREE.Object3D();
                    // 地址
                    province.properties = feature.properties.name;
                    // 多个情况
                    if (feature.geometry.type === "GeometryCollection") {
                        feature.geometry.geometries.forEach((coordinate) => {
                            coordinate.coordinates.forEach((rows) => {
                                const line = this.drawBoundary(rows);
                                const mesh = this.drawExtrudeMesh(rows);
                                province.add(line);
                                province.add(mesh);
                            });
                        });
                    }
                    // 单个情况
                    if (feature.geometry.type === "Polygon") {
                        feature.geometry.coordinates.forEach((coordinate) => {
                            const line = this.drawBoundary(coordinate);
                            const mesh = this.drawExtrudeMesh(coordinate);
                            province.add(line);
                            province.add(mesh);
                        });
                    }
                    this.map.add(province);
                    this.map.position.set(0.001, 0, 0.1);
                    this.map.rotation.set(THREE.MathUtils.degToRad(-90), 0, THREE.MathUtils.degToRad(20));
        // geo信息
        const features = jsondata.features;
        features.forEach((feature) => {
            // 单个省份 对象
            const province = new THREE.Object3D();
            // 地址
            province.properties = feature.properties.name;
            // 多个情况
            // console.log(feature.geometry.type);
            if (feature.geometry.type === "MultiPolygon") {
                feature.geometry.coordinates.forEach((coordinate) => {
                    coordinate.forEach((rows) => {
                        const line = this.drawBoundary(rows);
                        const mesh = this.drawExtrudeMesh(rows);
                        province.add(line);
                        province.add(mesh);
                        this.provinceMeshList.push(mesh);
                    });
                });
                this.container = new THREE.Object3D();
                this.container.add(this.map);
                this.scene.add(this.container);
                console.log(this.container);
            }
        )
            // 单个情况
            if (feature.geometry.type === "Polygon") {
                feature.geometry.coordinates.forEach((coordinate) => {
                    const line = this.drawBoundary(coordinate);
                    const mesh = this.drawExtrudeMesh(coordinate);
                    province.add(line);
                    province.add(mesh);
                    this.provinceMeshList.push(mesh);
                });
            }
            province.isHover = false;
            this.map.add(province);
        });
        this.map.position.set(1, 1, -1.5);
        this.map.scale.set(10, 10, 1);
        this.map.rotation.set(THREE.MathUtils.degToRad(-90), 0, THREE.MathUtils.degToRad(20));
        this.scene.add(this.map);
        this.setMouseEvent();
    }
    /**
     * 画区域分界线
     * @param {*} polygon 区域坐标点数组
     * @returns 区域分界线
     */
    drawBoundary(polygon) {
        const points = [];
        for (let i = 0; i < polygon.length; i++) {
@@ -71,36 +114,128 @@
        }
        const lineGeometry = new THREE.BufferGeometry().setFromPoints(points);
        const lineMaterial = new THREE.LineBasicMaterial({
            color: 'yellow'
            color: 0xffffff,
            linewidth: 2,
            transparent: true,
            depthTest: false,
        });
        const line = new THREE.Line(lineGeometry, lineMaterial);
        line.translateZ(MAP_DEPTH);
        line.translateZ(MAP_DEPTH + 0.001);
        return line;
    }
    /**
     * 绘制区域多边形
     * @param {*} polygon 区域坐标点数组
     * @returns 区域多边形
     */
    drawExtrudeMesh(polygon) {
        const shape = new THREE.Shape();
        for (let i = 0; i < polygon.length; i++) {
            const [x, y] = projection(polygon[i]);
            if (i === 0) {
                shape.moveTo(x, -y);
            }
            shape.lineTo(x, -y);
        }
        const geometry = new THREE.ExtrudeGeometry(shape, {
            depth: MAP_DEPTH,
            bevelEnabled: false,
            bevelSegments: 1,
            bevelThickness: 0.1,
        });
        return new THREE.Mesh(geometry, [
            this.topFaceMaterial,
            this.sideMaterial,
        ]);
    }
        const material = new THREE.MeshBasicMaterial({
            color: '#525288',
            transparent: true,
            opacity: 1,
    setMouseEvent() {
        this.mouseEvent = this.handleEvent.bind(this);
        this.experience.canvas.addEventListener("mousemove", this.mouseEvent);
    }
    removeMouseEvent() {
        this.experience.canvas.removeEventListener("mousemove", this.mouseEvent);
    }
    handleEvent(e) {
        // console.log(this);
        // return;
        if (this.map) {
            let mouse = new THREE.Vector2();
            let getBoundingClientRect = this.experience.canvas.getBoundingClientRect();
            let x = ((e.clientX - getBoundingClientRect.left) / getBoundingClientRect.width) * 2 - 1;
            let y = -((e.clientY - getBoundingClientRect.top) / getBoundingClientRect.height) * 2 + 1;
            mouse.x = x;
            mouse.y = y;
            raycaster.setFromCamera(mouse, this.camera.instance);
            let intersects = raycaster.intersectObjects(this.provinceMeshList, false);
            if (intersects.length) {
                let temp = intersects[0].object;
                this.animation(temp.parent);
            } else {
                this.animation();
            }
        }
    }
    throttle(callback, delay) {
        let lastCall = 0;
        return function () {
            let now = new Date().getTime();
            if (now - lastCall >= delay) {
                lastCall = now;
                callback.apply(null, arguments);
            }
        };
    }
    animation(province) {
        if (province) {
            if (!province.isHover) {
                province.isHover = true;
                this.map.children.forEach((item) => {
                    if (item.properties === province.properties) {
                        gsap.to(province.position, {
                            z: 0.12,
                            duration: 0.6
                        })
                    } else {
                        this.resetAnimation(item);
                    }
                })
            }
        } else {
            this.resetAllAnimation();
        }
    }
    resetAnimation(province) {
        gsap.to(province.position, {
            z: 0,
            duration: 0.6,
            onComplete: () => {
                province.isHover = false;
            }
        })
        return new THREE.Mesh(geometry, this.material);
    }
    resetAllAnimation() {
        this.map.children.forEach((item) => {
            this.resetAnimation(item);
        })
    }
    enterAnimation() {
        gsap.to(this.map.scale, {
            z: 10,
            duration: 0.6,
            ease: 'power1.out'
        })
    }
}