Vue整合openlayer學(xué)習(xí)一

效果圖:


image.png

1、首先在Vue項目中安裝openlayer:

npm install ol

2、在頁面中使用

<template>
    <div class="ov-container">

        <div id="map" class="map">
            <!-- 地圖坐標(biāo)組件 -->
            <MapCoordinate :coordinate="coordinate"></MapCoordinate>
        </div>

        <div class="dialog-style">
            <a-button type="primary" @click="showModal">
                Modal
            </a-button>
            <a-modal v-model="visible" title="Modal" ok-text="確認(rèn)" cancel-text="取消" @ok="hideModal">
                <p>Bla bla ...</p>
                <p>Bla bla ...</p>
                <p>Bla bla ...</p>
            </a-modal>
        </div>

<!--        // 彈出層-->
        <div id="popup" class="ol-popup">
            <a href="#" id="popup-closer" class="ol-popup-closer"></a>
            <div id="popup-content"></div>
        </div>

<!--        <div class="css_animation"></div>-->
    </div>
</template>

除了顯示地圖外,還可以在地圖上設(shè)置圖標(biāo)类咧,點擊圖標(biāo)彈出框框

<script>
    import 'ol/ol.css';
    import Map from 'ol/Map';
    import OSM from 'ol/source/OSM';
    import View from 'ol/View';
    import Tile from "ol/layer/Tile";
    import XYZ from "ol/source/XYZ";
    import Overlay from 'ol/Overlay'
    import VectorLayer from 'ol/layer/Vector';
    import VectorSource from 'ol/source/Vector';
    import Style from 'ol/style/Style';
    import Icon from 'ol/style/Icon';
    import Point from 'ol/geom/Point';
    import Feature from 'ol/Feature';

    import MapCoordinate from './MapCoordinate.vue';

    export default {
        name: "mapsPr",
        components: {MapCoordinate},
        data() {
            return {
                map: null,
                coordinate:null,
                datamap:[{
                    jd: 123.4151,
                    wd: 41.7624
                }],
                visible: false,
            }
        },
        mounted(){
          this.initMap()

            //初始化坐標(biāo)值設(shè)置
            this.coordinate =
                "X:" +
                this.map
                    .getView()
                    .getCenter()[0]
                    .toFixed(4) +
                ",Y:" +
                this.map
                    .getView()
                    .getCenter()[1]
                    .toFixed(4);
            this.map.on("pointermove", event => {
                this.coordinate =
                    "X:" +
                    event.coordinate[0].toFixed(4) +
                    ",Y:" +
                    event.coordinate[1].toFixed(4);
            });
        },
        methods: {
            showModal() {
                this.visible = true;
            },
            hideModal() {
                this.visible = false;
            },
            initMap() {

                var radius = 0;

                // Open Street Map 地圖層
                var openStreetMapLayer = new Tile({
                    source: new XYZ({
                        url: 'http://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png'

                    })
                });

                //layers、target蟹腾、view是地圖最基本的部分痕惋,是必需的
                // 創(chuàng)建地圖
                var map = new Map({
                    target: document.getElementById("map"),
                    layers: [
                        openStreetMapLayer
                    ],
                    view: new View({
                        // 設(shè)置成都為地圖中心
                        // center: [104.06, 30.67],

                        // 設(shè)置沈陽衛(wèi)星圖
                        center: [123.4132969379425, 41.7663024391555],
                        projection: 'EPSG:4326',
                        zoom: 10
                    }),
                });

/////////////////////////在地圖上添加圖標(biāo)////////////////////////////////////////////////////////

                //創(chuàng)建圖標(biāo)樣式
                var iconStyle = new Style({
                    image: new Icon({
                        // scale: 0.03,
                        opacity: 1,
                        // src: "https://openlayers.org/en/latest/examples/data/icon.png"
                        src: require("../../assets/Mark.png")
                    }),
                });


                // 1.創(chuàng)建Featrue,設(shè)置geometry屬性
                var feature = new Feature({

                    geometry: new Point([this.datamap[0].jd, this.datamap[0].wd]),
                    name: "Point"
                });

                //3.傳入source
                var source = new VectorSource({
                    features: [feature]
                });
                //創(chuàng)建圖標(biāo)層
                var vectorLayer = new VectorLayer({
                    // source: vectorSource,
                    source: source,
                    style: iconStyle
                });


                // map.addLayer(openStreetMapLayer);
                map.addLayer(vectorLayer);

///////////////////////點擊圖標(biāo)彈出框框/////////////////##############################

                var container = document.getElementById("popup");
                var content = document.getElementById("popup-content");
                var popupCloser = document.getElementById("popup-closer");

                var overlay = new Overlay({
                    element: container,
                    autoPan: true
                });

                map.on('click',function(e){
                    var pixel = map.getEventPixel(e.originalEvent);
                    console.log(pixel);
                    map.forEachFeatureAtPixel(pixel,function(feature){
                        //console.log(feature);
                        //return feature;
                        var coodinate = e.coordinate;
                        content.innerHTML = "<p>你點擊的坐標(biāo)為:" + coodinate + "</p>";
                        overlay.setPosition(coodinate);
                        map.addOverlay(overlay);
                    });
                });
                popupCloser.addEventListener('click',function(){
                    overlay.setPosition(undefined);
                });

            }
        }
    }
</script>

頁面樣式設(shè)置

<style lang="less" scoped>
    .ov-container {
        width: 100%;
        /*height: 600px;*/
        background: #fff;

        .map {
            position: relative;
            width: 100%;
            height:600px;
        }

        .dialog-style {
            position: absolute;
            top: 20px;
            left: 200px;

            .ant-btn-primary {
                background: rgba(22,1,1, 0.7);
                opacity: 0.5;
                color: #fff;
                border-color: #E1DED9;
                text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
                -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
                box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
            }
        }

        a.skiplink {
            position: absolute;
            clip: rect(1px, 1px, 1px, 1px);
            padding: 0;
            border: 0;
            height: 1px;
            width: 1px;
            overflow: hidden;
        }
        a.skiplink:focus {
            clip: auto;
            height: auto;
            width: auto;
            background-color: #fff;
            padding: 0.3em;
        }
        #map:focus {
            outline: #4A74A8 solid 0.15em;
        }
    }

    .css_animation{
        height:50px;
        width:50px;
        border-radius: 25px;
        background: rgba(255, 0, 0, 0.9);
        transform: scale(0);
        animation: myfirst 3s;
        animation-iteration-count: infinite;
    }

    @keyframes myfirst{
        to{
            transform: scale(2);
            background: rgba(0, 0, 0, 0);
        }
    }

    .ol-popup {
        position: absolute;
        background-color: #eeeeee;
        -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
        filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #cccccc;
        bottom: 12px;
        left: -50px;
        min-width: 280px;
    }

    .ol-popup:after,
    .ol-popup:before {
        top: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .ol-popup:after {
        border-top-color: #eeeeee;
        border-width: 10px;
        left: 48px;
        margin-left: -10px;
    }

    .ol-popup:before {
        border-top-color: #cccccc;
        border-width: 11px;
        left: 48px;
        margin-left: -11px;
    }

    .ol-popup-closer {
        text-decoration: none;
        position: absolute;
        top: 2px;
        right: 8px;
    }

    .ol-popup-closer:after {
        content: "?";
    }
</style>
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市娃殖,隨后出現(xiàn)的幾起案子血巍,更是在濱河造成了極大的恐慌,老刑警劉巖珊随,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異柿隙,居然都是意外死亡叶洞,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進店門禀崖,熙熙樓的掌柜王于貴愁眉苦臉地迎上來衩辟,“玉大人,你說我怎么就攤上這事波附∫涨纾” “怎么了?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵掸屡,是天一觀的道長封寞。 經(jīng)常有香客問我,道長仅财,這世上最難降的妖魔是什么狈究? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮盏求,結(jié)果婚禮上抖锥,老公的妹妹穿的比我還像新娘亿眠。我一直安慰自己,他們只是感情好磅废,可當(dāng)我...
    茶點故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布纳像。 她就那樣靜靜地躺著,像睡著了一般拯勉。 火紅的嫁衣襯著肌膚如雪竟趾。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天谜喊,我揣著相機與錄音潭兽,去河邊找鬼。 笑死斗遏,一個胖子當(dāng)著我的面吹牛山卦,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播诵次,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼账蓉,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了逾一?” 一聲冷哼從身側(cè)響起铸本,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎遵堵,沒想到半個月后箱玷,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡陌宿,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年锡足,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片壳坪。...
    茶點故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡舶得,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出爽蝴,到底是詐尸還是另有隱情沐批,我是刑警寧澤,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布蝎亚,位于F島的核電站九孩,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏发框。R本人自食惡果不足惜捻撑,卻給世界環(huán)境...
    茶點故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧顾患,春花似錦番捂、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至犁河,卻和暖如春鳖枕,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背桨螺。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工宾符, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人灭翔。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓魏烫,卻偏偏與公主長得像,于是被迫代替她去往敵國和親肝箱。 傳聞我的和親對象是個殘疾皇子哄褒,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,472評論 2 348