openlayers 入门(19)总览控件(鹰眼、小地图)

<template>
    <div class="vm">
        <h2 class="h-title">总览控件(鹰眼、小地图) OverviewMap</h2>
        <div id="map" class="map-x"></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";
import * as control from "ol/control";
import * as olInteraction from "ol/interaction";
import { fromLonLat } from "ol/proj";

export default {
    name: "OverviewMap",
    data() {
        return {
            map: null,
        };
    },
    methods: {
        initMap() {
            let overviewMapControl = new control.OverviewMap({
                className: "ol-overviewmap ol-custom-overviewmap",
                layers: [
                    new Tile({
                        name: "defaultLayer",
                        source: new XYZ({
                            url:
                                "http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}",
                        }),
                    }),
                ],
                collapseLabel: "\u00BB",
                label: "\u00AB",
                collapsed: false,
            });

            this.map = new Map({
                target: "map",
                controls: control.defaults().extend([overviewMapControl]),
                interactions: olInteraction
                    .defaults()
                    .extend([new olInteraction.DragRotateAndZoom()]),
                layers: [
                    new Tile({
                        source: new XYZ({
                            url:
                                "http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}",
                        }),
                    }),
                ],
                view: new View({
                    // projection: "EPSG:4326", // 坐标系,有EPSG:4326和EPSG:3857
                    center: fromLonLat([114.064839, 22.548857]),
                    zoom: 6, // 地图缩放级别(打开页面时默认级别)
                }),
            });
        },
    },
    mounted() {
        this.initMap();
        console.log(olInteraction);
    },
};
</script>

<style lang="scss" scoped>
::v-deep .ol-custom-overviewmap,
::v-deep .ol-custom-overviewmap.ol-uncollapsible {
    bottom: auto;
    left: auto;
    right: 0;
    top: 0;
}

::v-deep .ol-custom-overviewmap:not(.ol-collapsed) {
    border: 1px solid black;
}

::v-deep .ol-custom-overviewmap .ol-overviewmap-map {
    border: none;
    width: 300px;
}

::v-deep .ol-custom-overviewmap .ol-overviewmap-box {
    border: 2px solid red;
}

::v-deep .ol-custom-overviewmap:not(.ol-collapsed) button {
    bottom: auto;
    left: auto;
    right: 1px;
    top: 1px;
}

::v-deep .ol-rotate {
    top: 170px;
    right: 0;
}
</style>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值