openalyers 入门(2)弹窗

  有什么不太懂得或者有问题的,欢迎评论下面交流

<template>
    <div class="vm">
        <h2 class="h-title">弹窗 popup</h2>
        <div id="map" class="map-x" ref="map"></div>

        <div class="hit-map" ref="HitMap"></div>
        <div ref="popup" class="popup">
            <span class="icon-close" @click="closePopup">✖</span>
            <div class="content">
                {{ currentCoordinate }}<br>
                {{ currentCoordinate1.join(',') }}
            </div>
        </div>
        <div class="explain">
            <p>
                overlay:叠加层,即叠加到地图上显示的元素,
                关联了一个自定义的HTML元素,由一个单一的地图坐标点确定叠加位置。
                与控件类似,但不同的是叠加元素不是在一个固定的屏幕位置上,
                而是通过关联一个地图逻辑坐标点跟随地图移动,如标注点、popup等。
            </p>
        </div>
    </div>
</template>

<script>
import "ol/ol.css";
import { Map, View } from "ol";
import Tile from "ol/layer/Tile";
import XYZ from "ol/source/XYZ"; // 引入XYZ地图格式
import Overlay from "ol/Overlay";
import { toStringHDMS } from "ol/coordinate";
import { fromLonLat, toLonLat, transform } from "ol/proj";

export default {
    name: "Popup",
    data() {
        return {
            map: null,
            overlay: null,
            currentCoordinate: "",
            currentCoordinate1: [],
        };
    },
    methods: {
        initMap() {
            // 弹窗
            this.overlay = new Overlay({
                element: this.$refs.popup, // 弹窗标签,在html里
                autoPan: true, // 如果弹窗在底图边缘时,底图会移动
                autoPanAnimation: {
                    // 底图移动动画
                    duration: 250,
                },
            });

            // 实例化地图
            this.map = new Map({
                target: this.$refs.map,
                layers: [
                    new Tile({
                        name: "defaultLayer",
                        source: new XYZ({
                            url:
                                "http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}",
                        }),
                    }),
                ],
                overlays: [this.overlay], // 把弹窗加入地图
                view: new View({
                    // projection: "EPSG:4326",
                    center: fromLonLat([113.1206, 23.034996]),
                    zoom: 4, // 地图缩放级别(打开页面时默认级别)
                }),
            });

            this.mapClick();
        },

        mapClick() {
            this.map.on("singleclick", (evt) => {
                const coordinate = evt.coordinate; // 获取坐标
                const hdms = toStringHDMS(coordinate); // 转换坐标格式
                this.currentCoordinate = hdms; // 保存坐标点
                this.currentCoordinate1 = transform(coordinate,'EPSG:3857','EPSG:4326');
                this.overlay.setPosition(coordinate);
            });
        },
        // 关闭弹窗
        closePopup() {
            this.overlay.setPosition(undefined);
            this.currentCoordinate = null;
        },
    },
    mounted() {
        this.initMap();
    },
};
</script>

<style lang="scss" scoped>
@import "@/assets/css/varibles.scss";
.popup {
    width: 400px;
    height: 100px;
    background: #fff;
    position: absolute;
    top: -115px;
    left: -150px;
    box-sizing: border-box;
    padding: 10px;

    &::after {
        content: "";
        display: block;
        position: absolute;
        width: 20px;
        height: 20px;
        background: #fff;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }

    .icon-close {
        position: absolute;
        top: 0px;
        right: 8px;
    }

    .content {
        margin-top: 14px;
    }
}
</style>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值