月度归档: 2023 年 12 月

9 篇文章

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…