Cesium 材质 Material
纯色材质 material: Cesium.Color.fromCssColorString('#20b6ff').withAlpha(0.5), // 墙体颜色 图片材质 material: new Cesium.ImageMaterialProperty({ color: new Cesium.Color.fromCssColorString(…
Cesium 接入WMTS服务
const imageryProvider = new Cesium.WebMapTileServiceImageryProvider({ // url: `http://localhost:8088/geoserver/gwc/service/wmts/rest/mds:sheng/{style}/{TileMatrixSet}/{TileMat…
Cesium 接入WMS服务
const imageryProvider = new Cesium.WebMapServiceImageryProvider({ url: `http://localhost:8088/geoserver/mds/wms`, layers: "sheng", style: 'default', parameters:{ format: 'imag…
WebGis 学习目录
1.(cesium篇)cesium接入天地图影像2.(cesium篇)cesium加载接入百度地图3.(cesium篇)cesium接入高德、osm、谷歌、arcgis、mapbox地图 5.(cesium篇)cesium点采集6.(cesium篇)cesium点编辑点修改7.(cesium篇)cesium线采集8.(cesium篇)cesium线…
WebGis 开发资源
客户端框架 服务端 GeoServer 在线地图资源 1.天地图 http://lbs.tianditu.gov.cn/server/MapService.html if(type == 0){ //矢量地图 this.viewer.imageryLayers.addImageryProvider( new Cesium.WebMapTileSer…
GeoServer 安装
安装 https://geoserver.org/ 500错误, geoserver 和jdk 版本不匹配,下载兼容java8的版本,https://geoserver.org/release/2.14.2/ 跨越问题解决 geoserver\WEB-INF\web.xml  取消注释CORS 相关内容,有两处需要处理
cesium 实体创建
点 { position: Cartesian3, point: { pixelSize: 8, outlineColor: Cesium.Color.BLACK, // 点的轮廓颜色 outlineWidth: 2, // 点的轮廓宽度 color: ThemeConfig.pointColor } } 线 { name: '划线', polyl…
植被生长仿真系统-项目研究
1. 背景 2. 目标 3.植被指数 新型植被指数 (NIRv)  叶面积指数(LAI) 植被覆盖度VFC 归一化植被指数 NDVI $$NDVI=\frac{NIR近红外-RED红色}{NIR近红外+RED红色}$$ 增强型植被指数(EVI2) $$EVI=2.5\ast \left(NIR-RED\right)/\left(NIR+6…
移动端适方案
viewport即视窗、视口,用于显示网页部分的区域,在PC端视口即是浏览器窗口区域,在移动端,为了让页面展示更多的内容,视窗的宽度默认不为设备的宽度,在移动端视窗有三个概念:布局视窗、视觉视窗、理想视窗。 布局视窗:在浏览器窗口css的布局区域,布局视口的宽度限制css布局的宽。为了能在移动设备上正常显示那些为pc端浏览器设计的网站,移动设备上的…