博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
openlayer2 三:加载geoserver图层
阅读量:5993 次
发布时间:2019-06-20

本文共 2300 字,大约阅读时间需要 7 分钟。

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/bitree1/article/details/80755886

1.加载geoserver wms服务

//url为geoserver的wms服务地址lyr = new ol.layer.Tile({            source:new ol.source.TileWMS({                        extent:[112,22,114,24],                        params:{                            'LAYERS':'test:a_river',                            'VERSION':'1.1.0',                            'BBOX':[113.029319763184,22.7097873687744,113.95068359375,23.7140617370605],                            'CRS':'EPSG:4326',                            'WIDTH':704,                            'HEIGHT':768                        },                        projection:"EPSG:4326",                        url:url                        })                });

2.加载geoserver wfs服务

lyr = new ol.layer.Vector({            source:new ol.source.Vector({                url:function(extent,resolution,projection){                        return 'http://localhost:8088/geoserver/test/ows?service=wfs&version=1.0.0&request=getfeature&typename=test:a_river&outputFormat=application/json&bbox=' + extent.join(',');                    },                format:new ol.format.GeoJSON(),                strategy:ol.loadingstrategy.bbox            }),            style:new ol.style.Style({                stroke:new ol.style.Stroke({                    color:'rgba(0,0,255,1.0)',                    width:2                })            })    })

3.加载gerserver wmts服务

var matrixIds = [],resolutions = [];//maxExtent为发布的图层范围var maxExtent = [109.66140013800003,20.22346267200004,117.3041534420001,25.520298004000036];var maxResolution = ol.extent.getWidth(maxExtent) / 256;//切片级数根据各自情况,此处4个级别的切片,matrixId为每一级的idfor(var i = 0;i <= 3;i++){    matrixIds[i] = 'grid_gdxzqh:'+i;    resolutions[i] = maxResolution / Math.pow(2,i);}lyr = new ol.layer.Tile({    source:new ol.source.WMTS({            url:'http://localhost:8089/geoserver/gwc/service/wmts',            layer:'test:imagermap',            tileGrid:new ol.tilegrid.WMTS({                        extent:maxExtent,                        resolutions:resolutions,                        matrixIds:matrixIds            }),            matrixSet:'grid_imagemap',            format:'image/png',            projection:'EPSG:4326'    })})

将不定期更新资源,欢迎持续关注


想获得更多的学习知识请关注微信公众号:西北码农或扫下方二维码

你可能感兴趣的文章
vue中检测数组改变
查看>>
项目闲谈(一)
查看>>
Python 小练习三 发邮件
查看>>
RecyclerView初探
查看>>
在linux centos6.5中搭建共享目录映射到windows开发
查看>>
闲逛计算机系统(一):从HelloWorld说起
查看>>
20160330javaweb之session 小练习
查看>>
OpenStack Ocata Telemetry 警告服务部署
查看>>
GitLab: API is not accessibl
查看>>
yum cannot retrieve metalink for repository
查看>>
数组及指针效率
查看>>
linux系统版本查看
查看>>
puppetSvn集成
查看>>
使用 ICSharpCode.SharpZipLib.dll 压缩和解压文件
查看>>
禅道使用之项目经理篇
查看>>
Java List 遍历
查看>>
Java 07 example
查看>>
四月之 诗四首和五十六句话
查看>>
RF框架搭建
查看>>
Redis 与 数据库处理数据的两种模式
查看>>