国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Geoserver+Openlayers拉框查詢

番茄西紅柿 / 1793人閱讀

摘要:注意的版本號,高版本存在中新語法不兼容的情況查詢類型點擊多邊形拉框圖層名稱,可以是單個或多個重點,不要改變回調函數聲明加載函數傳參解決跨域的關鍵回調回調函數使用載入要素用于刪除之前的框,表示號,隨便取一個刪除之前的部分

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>OpenLayers</title>
    <link rel="stylesheet" href="geoserver/ol.css" type="text/css">
    <script src="geoserver/ol.js"></script>
    <script src="bower_components/jquery/dist/jquery.min.js"></script>
    <link rel="stylesheet" href="plugins/layui-v2.4.3/layui/css/layui.css">
    <script src="plugins/layui-v2.4.3/layui/layui.js" charset="utf-8"></script>
    <link rel="stylesheet" href="https://openlayers.org/en/v3.20.1/css/ol.css" type="text/css">
    <#--注意openlayer的版本號,高版本存在es6中新語法不兼容的情況-->
    <script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>
    <script src="https://openlayers.org/en/v3.20.1/build/ol.js"></script>
</head>
<style>
    #map {
        height: 600px;
        /*width: 1024px;*/
        /* float: left;*/
    }
</style>
<body>
<div id="map">
<form class="form-inline">
    <label>查詢類型</label>
    <select id="type">
        <option value="None">None</option>
        <option value="Point">點擊</option>
        <option value="Polygon">多邊形</option>
        <option value="Circle">拉框</option>
    </select>
</form>
</div>
<script>
    var map = new ol.Map({
        target: 'map',
        view: new ol.View({
            projection: 'EPSG:4326',
            center: [104.07, 30.72],
            zoom: 7
        })
    });
    var wfsParams = {
        service: 'WFS',
        version: '1.1.1',
        request: 'GetFeature',
        typeName: 'map_dz:tl_lx_g',  //圖層名稱,可以是單個或多個
        outputFormat: 'text/javascript',  //重點,不要改變
        format_options: 'callback:loadFeatures'  //回調函數聲明
    };
 
    var vectorSource = new ol.source.Vector({
        format: new ol.format.GeoJSON(),
        loader: function (extent, resolution, projection) {  //加載函數
            var url = 'http://192.168.1.113:8080/geoserver/map_dz/wms';
            $.ajax({
                url: url,
                data: $.param(wfsParams),   //傳參
                type: 'GET',
                dataType: 'jsonp',   //解決跨域的關鍵
                jsonpCallback: 'loadFeatures'  //回調
 
            });
        },
        strategy: ol.loadingstrategy.tile(new ol.tilegrid.createXYZ({
            maxZoom: 20
        })),
        projection: 'EPSG:4326'
    });
    //回調函數使用
    window.loadFeatures = function (response) {
        vectorSource.addFeatures((new ol.format.GeoJSON()).readFeatures(response));  //載入要素
    };
    var vectorLayer = new ol.layer.Vector({
        source: vectorSource,
        style: new ol.style.Style({
            stroke: new ol.style.Stroke({
                color: 'rgba(0, 0, 255, 1.0)',
                width: 2
            })
        })
    });
    map.addLayer(vectorLayer);
    var draw;
    var typeSelect = document.getElementById('type');
    var value;
    var num=10;//用于刪除之前的框,表示號,隨便取一個
    function addInteraction() {
        if (value !== 'None') {
            if (value === 'Polygon') {
                draw = new ol.interaction.Draw({
                    source: vectorLayer.getSource(),
                    style: new ol.style.Style({
                        stroke: new ol.style.Stroke({
                            color: '#ffcc33',
                            width: 2
                        }),
                        image: new ol.style.Circle({
                            radius: 7,
                            fill: new ol.style.Fill({
                                color: '#ffcc33'
                            })
                        })
                    }),
                    type: value
                });
            } else if (value === 'Circle') {
                draw = new ol.interaction.Draw({
                    source: vectorLayer.getSource(),
                    style: new ol.style.Style({
                        stroke: new ol.style.Stroke({
                            color: '#ffcc33',
                            width: 2
                        }),
                        image: new ol.style.Circle({
                            radius: 7,
                            fill: new ol.style.Fill({
                                color: '#ffcc33'
                            })
                        })
                    }),
                    type: value,
                    geometryFunction: ol.interaction.Draw.createBox()
                });
            } else if (value === 'Point') {
                draw = new ol.interaction.Draw({
                    source: vectorLayer.getSource(),
                    style: new ol.style.Style({
                        stroke: new ol.style.Stroke({
                            color: '#ffcc33',
                            width: 2
                        }),
                        image: new ol.style.Circle({
                            radius: 7,
                            fill: new ol.style.Fill({
                                color: '#ffcc33'
                            })
                        })
                    }),
                    type: value
                });
            }
 
            map.addInteraction(draw);
            //刪除之前draw的部分
            draw.on('drawstart',function(evt) {
                var featureAdd=vectorLayer.getSource().getFeatureById(num);
                if(featureAdd!=null){
                    vectorLayer.getSource().removeFeature(featureAdd);
                }
            });
            //繪圖結束,處理選中部分
            draw.on('drawend',function(e){
                e.feature.setId(num);
                var geom=e.feature.getGeometry();
                var coor = geom.v;
                mapSelect(coor);
            });
        }
    }
    //選擇事件
    typeSelect.onchange = function() {
        value = typeSelect.value;
        map.removeInteraction(draw);
        addInteraction();
    };
 
    //draw圖像與原始數據相交
    function mapSelect(coor) {
        if(value=='Point') {
            coor = [coor[0]-0.0001,coor[1]-0.0001,coor[0]+0.0001,coor[1]+0.0001];
        }
        var FILTER = '<Filter xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml"><BBOX><PropertyName>geom</PropertyName><gml:Envelope srsName="EPSG:4326"><gml:lowerCorner>' + coor[0] + '  ' + coor[1] + '</gml:lowerCorner><gml:upperCorner>' + coor[2] + '  ' + coor[3] + '</gml:upperCorner></gml:Envelope></BBOX></Filter>';
        getFeature({
            typename: 'map_dz:tl_lx_g',//查詢的服務圖層名稱
            filter: FILTER,//查詢條件
            callback: 'getIdentifyroadGrid'//查詢的回調函數
        });
    }
    var selectNum=[];
    var geojsonFormat = new ol.format.GeoJSON({defaultDataProjection: "EPSG:4326"});
    function getIdentifyroadGrid(res) {
        var queryData = [];
        var features = geojsonFormat.readFeatures(res);
 
       for (var nu = 0; nu<selectNum.length;nu++) {
            var featureSelect=vectorLayer.getSource().getFeatureById(selectNum[nu]);
            if(featureSelect!=null) {
                featureSelect.setStyle(
                        new ol.style.Style({
                            stroke: new ol.style.Stroke({
                                color: 'rgba(0, 0, 255, 1.0)',
                                width: 2
                            })
                        }));
            }
        }
        selectNum=[];
        for (var i = 0; i < features.length; i++) {
            var feature = features[i];
            console.log(feature);
            selectNum.push(feature.f);
            var featureSelectCurrent=vectorLayer.getSource().getFeatureById(feature.f);
            featureSelectCurrent.setStyle(
                    new ol.style.Style({
                        stroke: new ol.style.Stroke({
                            color: '#ff4118',
                            width: 2
                        })
                    }));
            var lxmc = feature.H["lxmc"];
            var ldbm = feature.H["ldbm"];
            var lxbh = feature.H["lxbh"];
            var result = {
                "lxmc": lxmc,
                "ldbm": ldbm,
                "lxbh": lxbh,
                "setindex": i
            };
            queryData.push(result)
        }
        console.log(selectNum);
        var tableIns=null;
        var dataTable = "<table class="layui-table" lay-filter="demo" id="joinTab"></table>";
        layui.use(['table', 'layer'], function () {
            var table = layui.table;
            var layer = layui.layer;
            var index = layer.open({
                type: 1 //Page層類型
                , title: '要素屬性'
                , shade: 0 //遮罩透明度
                , anim: 0 //0-6的動畫形式,-1不開啟
                , content: dataTable
                , offset: ['250px', '290px']
                , zIndex: 1
                , scrollbar: false
                , resize: false
                , skin: 'layui-layer-molv'
                , closeBtn: 2
                , btn: ["關閉"]
                , yes: function (index) {
                    layer.close(index);
                }
                , cancel: function () {
                }
            });
            tableIns = table.render({
                elem: "#joinTab",
                width: "auto",
                height: "auto",
                data: queryData,
                initSort: {field: 'lxbh', type: 'desc'},
                cols: [[
                    {field: 'lxmc', title: '路線名稱', width: 150, align: 'center', sort: true},
                    {field: 'ldbm', title: '路線編號', width: 150, align: 'center', sort: true},
                    {field: 'lxbh', title: '路段編碼', width: 150, align: 'center', sort: true}
                ]]
            });
            layer.style(index, {
                opacity: 0.8
            });
        });
 
        if (tableIns) {
            tableIns.reload({
                data: queryData
            });
        } else {
            // console.log("Do Nothing!");
        }
    }
 
    //請求wfs數據
    function getFeature(options) {
        $.ajax(/*'http://192.168.1.113:8080/geoserver/map_dz/wms', */{
            type: 'GET',
            url: 'http://192.168.1.113:8080/geoserver/map_dz/wms',
            data: {
                service: 'WFS',
                version: '1.1.1',
                request: 'GetFeature',
                typename: options.typename,
                srsname: options.srid,
                outputFormat: 'text/javascript',
                viewparams: options.viewparams,
                bbox: (options.extent === undefined) ? undefined : options.extent.join(',') + ',' + options.srid,
                filter: options.filter
            },
            dataType: 'jsonp',
            jsonp: 'format_options',
            jsonpCallback: 'callback:' + options.callback
        });
 
    }
 
</script>
</body>
</html>


文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/1130.html

相關文章

  • 比較好的網站推薦

    摘要:小程序開發網站推薦微信小程序支付寶小程序百度智能小程序字符跳動小程序小程序組件化開發框架開發小程序框架語法開發小程序框架,漸進式應用漸進式應用教程博客大牛推薦張鑫旭個人網站阮一峰網絡日志阮一峰教程廖雪峰官方網站呂大豹的博客司徒正美博客編程教 小程序開發網站推薦 微信小程序:https://developers.weixin.qq.... 支付寶小程序:https://open.al...

    Corwien 評論0 收藏0
  • web前端技術體系大全

    以下為個人目前接觸到的前端技術,歡迎大家補充。 一、前端技術框架 1、Vue.js 官網:https://cn.vuejs.org/ Vue CLI:https://cli.vuejs.org/ 菜鳥教程:http://www.runoob.com/w3cnote... Nuxt.js:https://zh.nuxtjs.org/ 桌面應用Electron:https:...

    RaoMeng 評論0 收藏0
  • 基于Python實現GeoServer矢量文件批量發布

      小編寫這篇文章的主要目的,主要是來給大家做個詳細的解答,解答的內容主要是Python的相關內容,包括利用Python實現GeoServer矢量文件的批量發布,具體是怎么樣進行操作呢?下面就給大家詳細解答下?! ?.前言  由于矢量圖層文件較多,手動發布費時費力,python支持的關于geoserver包(geoserver-restconfig)又由于年久失修,無法在較新的geoserver版...

    89542767 評論0 收藏0
  • Vue下的cesium使用GeoServer的wms服務跨域問題

    摘要:兩種方案中間件我沒搞成功把文件放進去之后改好了報,這個我沒搞成功就不多說了,需要的可以自行搜索一波。需要監聽的項目所在端口號就比如我的項目啟動端口是,這里就寫地址,本地和都可以項目中的路徑這個意思就是在項目中訪問的時候把請求轉到是轉發地址 兩種方案 coess中間件(我沒搞成功) 把class文件放進去之后改好了web.xml報504,這個我沒搞成功就不多說了,需要的可以自...

    Seay 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<