分类: WebGIS

22 篇文章

WebGIS 坐标系
地理坐标系(GCS Geographic Coordinate System) 投影坐标系(PCS Projection Coordinate System) 投影方式: 高斯克吕格(Gauss Kruger)投影 = 横轴墨卡托(Transverse Mercator)投影 Mercator 墨卡托投影 UTM 通用横轴墨卡托投影 Lambert…
GeoServer 发布 shp文件
新建数据源 在新建矢量数据源,从上到下分别选择工作区、设置数据源名称、shp文件的路径以及dbf的字符集(一般国内都是utf-8或gbk,该参数设置如果不正确,会导致拾取到的属性中文乱码,此处用的案例是国外的,所以是ISO) 发布图层 在发布数据页面,点击边框中的从数据计算,以及Compute from native bounds,最后点击保存
Cesium 材质 Material
纯色材质 material: Cesium.Color.fromCssColorString('#20b6ff').withAlpha(0.5), // 墙体颜色 图片材质 material: new Cesium.ImageMaterialProperty({ color: new Cesium.Color.fromCssColorString(…
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…