openlayers 加载geoserver (多个、单个)WFS服务并鼠标移入高亮

2 篇文章 1 订阅
1 篇文章 0 订阅

 

一、单个加载

1、加载单个WFS服务(可重复调用);

2、鼠标移入显示高亮;

3、鼠标点击展示当前点击信息弹窗;

4、可通过 vm.pipeLayer[type].setVisible(true/false)决定是否展示改图层;

<template>
    <div id="mapDiv" v-loading="loading">
        <div id="popupPipe" class="popup-box">
            <div class="pipe-arrow"></div>
            <div class="pipe-info">
                <p>id:{{popupPipeList.Id}}</p>
                <p>名称:{{popupPipeList.Layer}}</p>
                <p>编号:{{popupPipeList.id}}</p>
            </div>
        </div>
    </div>
</template>
<script>
    import 'ol/ol.css';
    import Map from "ol/Map";
    import View from "ol/View";
    import {GeoJSON} from 'ol/format';
    import {defaults} from 'ol/control.js';
    import {Circle, Fill, Stroke, Style} from 'ol/style';
    import {Vector} from "ol/layer";
    import SourceVector from 'ol/source/Vector';
    import {bbox as bboxStrategy} from 'ol/loadingstrategy';
    export default {
        name: 'TdMap',
        components: {},
        props:{},
        data(){
            return{
                map: null,
                highlight:null,//高亮
                popupPipe:null,//信息弹窗
                popupPipeList:{},//信息
                pipeLayer:{},//管网图层
                townColor:{
                    'line1': {color:"rgba(0,122,34,1)",width:4 }, //线1
                    'line2': {color:"rgba(255,0,0,1)",width:3 }, //线2
                    'point': {color:"rgba(0,197,255,1)",width:5 }, //点
                },
            }
        },
        created(){
            this.$nextTick(() => {
                this.iniMap();
            })
        },
        mounted(){},
        methods:{
            /**
             * 初始化地图
             */
            iniMap() {
                let vm = this;
                vm.popupPipe = vm.addOverlay('popupPipe',[35,-85]);
                vm.map = new Map({
                    layers: [],
                    overlays: [
                        vm.popupPipe
                    ],
                    target: document.getElementById('mapDiv'),
                    controls: defaults({
                        zoom:false
                    }),
                    view: new View({
                        center: [106.9556, 37.62666],
                        zoom: 10,
                        projection: "EPSG:4326",
                        maxZoom: 18,
                    }),
                });
                vm.addPipe('line1');//加载WFS
                vm.addPipe('line2');//加载WFS
                vm.addPipe('point');//加载WFS
                //高亮风格的图层:
                let featureOverlay = new Vector({
                    source: new SourceVector(),
                    style: new Style()
                });
                vm.map.addLayer(featureOverlay);
                vm.map.on('click', function(evt) {
                    let pixel = vm.map.getEventPixel(evt.originalEvent);
                    let feature = vm.map.forEachFeatureAtPixel(pixel, function (feature) {
                        return feature;
                    });
                    if (feature) {
                        let id = String(feature.getId()).split('.')[0];
                        if(
                            id && (
                                id === 'line1' ||
                                id === 'line2' ||
                                id === 'point'
                            )
                        ){
                            vm.displayFeatureInfo(feature,evt.coordinate);
                        }
                    }else{
                        vm.removeMapPopup();
                    }
                });
                /*鼠标划过地图*/
                vm.map.on('pointermove',function(e) {
                    let pixel = vm.map.getEventPixel(e.originalEvent);
                    let feature = vm.map.forEachFeatureAtPixel(pixel,function (feature) {
                        return feature;
                    });
                    /*管网高亮删除*/
                    if(vm.highlight){
                        let Type = String(vm.highlight.getId()).split('.')[0];
                        Type &&
                        Type !== 'undefined' &&
                        vm.townColor[Type] &&
                        vm.setPipeStyle(vm.highlight,Type,vm.townColor[Type].color,vm.townColor[Type].width);
                    }
                    if (feature) {
                        vm.map.getTargetElement().style.cursor="pointer";
                        /*管网高亮展示*/
                        vm.highlight = feature;
                        let Type = String(feature.getId()).split('.')[0];
                        Type &&
                        Type !== 'undefined' &&
                        vm.townColor[Type] &&
                        vm.setPipeStyle(feature,Type,'rgba(178,255,137,1)',vm.townColor[Type].width);
                        vm.map.getTargetElement().style.cursor="pointer";
                    } else {//鼠标滑过地图空白区域
                        vm.map.getTargetElement().style.cursor="";
                    }
                });
            },
            /*添加WFS*/
            addPipe(type) {
                let vm = this;
                let vectorSource = new SourceVector({
                    format: new GeoJSON(),
                    url: function(extent) {
                        return 'http://geoserver服务器地址?service=WFS&' +
                            'version=1.1.0&request=GetFeature&typename=空间名称前缀:'+type+'&' +
                            'outputFormat=application/json&srsname=EPSG:4326&' +
                            'bbox=' + extent.join(',') + ',EPSG:4326';
                    },
                    strategy: bboxStrategy
                });
                vm.pipeLayer[type] = new Vector({
                    source: vectorSource,
                    style: function (feature) {
                        let id = feature.id_.split('.')[0];
                        vm.setPipeStyle(feature,id,vm.townColor[id].color,vm.townColor[id].width);
                    }
                });
                vm.map.addLayer(vm.pipeLayer[type]);
            },
            /*管网样式*/
            setPipeStyle(feature,id,color,width){
                switch (id) {
                    case 'yanchi_fajing':
                        feature.setStyle(
                            new Style({
                                image: new Circle({
                                    radius: id ? width : 5,
                                    fill: new Fill({
                                        color:  id ? color : '#f00',
                                    }),
                                    stroke: new Stroke({
                                        color: '#fff',
                                        width: 1,
                                        EPSG: "4326"
                                    })
                                }),
                            })
                        );
                        break;
                    default:
                        feature.setStyle(
                            new Style({
                                stroke: new Stroke({
                                    color: id ? color : '#f00',
                                    width: id ? width : 1,
                                    EPSG: "4326"
                                })
                            })
                        );
                }
            },
            /****************管网点击操作********************/
            displayFeatureInfo(feature,coordinate) {
                let vm = this;
                if (feature) {
                    let keys = feature.getKeys();
                    let properties = feature.getProperties();
                    properties['id'] = feature.getId();
                    console.log(keys);
                    console.log(properties);
                    vm.popupPipeList = properties;
                    vm.popupPipe.setPosition([coordinate[0], coordinate[1]]);
                    vm.map.addOverlay(vm.popupPipe);
                }
            },
        },
    }
</script>
<style lang="scss" scoped>
    #mapDiv{
        height: 100%;
        width: 100%;
        .popup-box {
            position: relative;
            z-index: 999;
            .pipe-arrow {
                display: inline-block;
                position: absolute;
                left: -35px;
                top: 53px;
                &::before {
                    border-width: 20px 50px 8px 0;
                    transform: rotateZ(-30deg);
                    border-style: solid;
                    display: inline-block;
                    content: "";
                    border-color: transparent #467AE7 transparent transparent;
                }
            }
            .pipe-info{
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                border-radius: 10px;
                color: #fff;
                font-size: 15px;
                line-height: 28px;
                width: 368px;
                min-height: 100px;
                padding: 15px 27px 20px 27px;
                background: #467AE7;
                .inspection-ul li {
                    line-height: 24px;
                }

            }
        }
    }
</style>
 

 

二、多个加载

1、加载多个WFS服务(yi'j);

2、鼠标移入显示高亮;

3、鼠标点击展示当前点击信息弹窗;

<template>
    <div id="mapDiv" v-loading="loading">
        <div id="popupPipe" class="popup-box">
            <div class="pipe-arrow"></div>
            <div class="pipe-info">
                <p>id:{{popupPipeList.Id}}</p>
                <p>名称:{{popupPipeList.Layer}}</p>
                <p>编号:{{popupPipeList.id}}</p>
            </div>
        </div>
    </div>
</template>
<script>
    import $ from "jquery";
    import 'ol/ol.css';
    import Map from "ol/Map";
    import View from "ol/View";
    import {GeoJSON} from 'ol/format';
    import {defaults} from 'ol/control.js';
    import {Circle, Fill, Stroke, Style} from 'ol/style';
    import {Vector} from "ol/layer";
    import SourceVector from 'ol/source/Vector';
    import {bbox as bboxStrategy} from 'ol/loadingstrategy';
    export default {
        name: 'TdMap',
        components: {},
        props:{},
        data(){
            return{
                map: null,
                highlight:null,//高亮
                popupPipe:null,//信息弹窗
                popupPipeList:{},//信息
                townColor:{
                    'line1': {color:"rgba(0,122,34,1)",width:4 }, //线1
                    'line2': {color:"rgba(255,0,0,1)",width:3 }, //线2
                    'point': {color:"rgba(0,197,255,1)",width:5 }, //点
                },
                pipeLayerWfs:null,//WFS图层
            }
        },
        created(){
            this.$nextTick(() => {
                this.iniMap();
            })
        },
        mounted(){},
        methods:{
            /**
             * 初始化地图
             */
            iniMap() {
                let vm = this;
                vm.popupPipe = vm.addOverlay('popupPipe',[35,-85]);
                vm.map = new Map({
                    layers: [],
                    overlays: [
                        vm.popupPipe
                    ],
                    target: document.getElementById('mapDiv'),
                    controls: defaults({
                        zoom:false
                    }),
                    view: new View({
                        center: [106.9556, 37.62666],
                        zoom: 10,
                        projection: "EPSG:4326",
                        maxZoom: 18,
                    }),
                });
                vm.addPipe();//加载WFS
                //高亮风格的图层:
                let featureOverlay = new Vector({
                    source: new SourceVector(),
                    style: new Style()
                });
                vm.map.addLayer(featureOverlay);
                vm.map.on('click', function(evt) {
                    let pixel = vm.map.getEventPixel(evt.originalEvent);
                    let feature = vm.map.forEachFeatureAtPixel(pixel, function (feature) {
                        return feature;
                    });
                    if (feature) {
                        let id = String(feature.getId()).split('.')[0];
                        if(
                            id && (
                                id === 'line1' ||
                                id === 'line2' ||
                                id === 'point'
                            )
                        ){
                            vm.displayFeatureInfo(feature,evt.coordinate);
                        }
                    }else{
                        vm.removeMapPopup();
                    }
                });
                /*鼠标划过地图*/
                vm.map.on('pointermove',function(e) {
                    let pixel = vm.map.getEventPixel(e.originalEvent);
                    let feature = vm.map.forEachFeatureAtPixel(pixel,function (feature) {
                        return feature;
                    });
                    /*管网高亮删除*/
                    if(vm.highlight){
                        let Type = String(vm.highlight.getId()).split('.')[0];
                        Type &&
                        Type !== 'undefined' &&
                        vm.townColor[Type] &&
                        vm.setPipeStyle(vm.highlight,Type,vm.townColor[Type].color,vm.townColor[Type].width);
                    }
                    if (feature) {
                        vm.map.getTargetElement().style.cursor="pointer";
                        /*管网高亮展示*/
                        vm.highlight = feature;
                        let Type = String(feature.getId()).split('.')[0];
                        Type &&
                        Type !== 'undefined' &&
                        vm.townColor[Type] &&
                        vm.setPipeStyle(feature,Type,'rgba(178,255,137,1)',vm.townColor[Type].width);
                        vm.map.getTargetElement().style.cursor="pointer";
                    } else {//鼠标滑过地图空白区域
                        vm.map.getTargetElement().style.cursor="";
                    }
                });
            },
            /*添加WFS*/
            addPipe() {
                let vm = this;
                let wfsParams = {
                    service : 'WFS',
                    version : '1.1.0',
                    request : 'GetFeature',
                    typeName :
                        'project:line1,' +
                        'project:line2,' +
                        'project:point',//加载多个图层名称
                    outputFormat : 'text/javascript',  //重点,不要改变
                    format_options : 'callback:loadFeatures'  //回调函数声明
                };
                let pipeSource = new SourceVector({
                    format: new GeoJSON(),
                    loader: function() {  //加载函数
                        let url = 'http://geoserver服务器地址';
                        $.ajax({
                            url: url,
                            data : $.param(wfsParams),   //传参
                            type : 'GET',
                            dataType: 'jsonp',   //解决跨域的关键
                            jsonpCallback:'loadFeatures',  //回调
                        });
                    },
                    strategy: bboxStrategy,
                    projection: 'EPSG:4326'
                });
                //回调函数使用
                window.loadFeatures = function(response){
                    pipeSource.addFeatures((new GeoJSON()).readFeatures(response));  //载入要素
                };
                vm.pipeLayerWfs= new Vector({
                    source: pipeSource,
                    style: function (feature) {
                        let id = feature.id_.split('.')[0];
                        vm.setPipeStyle(feature,id,vm.townColor[id].color,vm.townColor[id].width);
                    }
                });
                vm.map.addLayer(vm.pipeLayerWfs);
            },
            /*管网样式*/
            setPipeStyle(feature,id,color,width){
                if(id === 'point'){
                    feature.setStyle(
                        new Style({
                            image: new Circle({
                                radius: id ? width : 5,
                                fill: new Fill({
                                    color:  id ? color : '#f00',
                                }),
                                stroke: new Stroke({
                                    color: '#fff',
                                    width: 1,
                                    EPSG: "4326"
                                })
                            }),
                        })
                    );
                }else{
                    feature.setStyle(
                        new Style({
                            stroke: new Stroke({
                                color: id ? color : '#f00',
                                width: id ? width : 1,
                                EPSG: "4326"
                            })
                        })
                    );
                }
            },
            /****************管网点击操作********************/
            displayFeatureInfo(feature,coordinate) {
                let vm = this;
                if (feature) {
                    let keys = feature.getKeys();
                    let properties = feature.getProperties();
                    properties['id'] = feature.getId();
                    console.log(keys);
                    console.log(properties);
                    vm.popupPipeList = properties;
                    vm.popupPipe.setPosition([coordinate[0], coordinate[1]]);
                    vm.map.addOverlay(vm.popupPipe);
                }
            },
        },
    }
</script>
<style lang="scss" scoped>
    #mapDiv{
        height: 100%;
        width: 100%;
        .popup-box {
            position: relative;
            z-index: 999;
            .pipe-arrow {
                display: inline-block;
                position: absolute;
                left: -35px;
                top: 53px;
                &::before {
                    border-width: 20px 50px 8px 0;
                    transform: rotateZ(-30deg);
                    border-style: solid;
                    display: inline-block;
                    content: "";
                    border-color: transparent #467AE7 transparent transparent;
                }
            }
            .pipe-info{
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                border-radius: 10px;
                color: #fff;
                font-size: 15px;
                line-height: 28px;
                width: 368px;
                min-height: 100px;
                padding: 15px 27px 20px 27px;
                background: #467AE7;
                .inspection-ul li {
                    line-height: 24px;
                }

            }
        }
    }
</style>

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

聂曦r

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值