cesium绘制中国边界,设置边界样式,步骤如下:
步骤一:
从http://datav.aliyun.com/portal/school/atlas/area_selector网站下载geojson数据;
下载geojson数据
步骤二:
使用cesium中的GeoJsonDataSource加载步骤一下载好的json数据
//高亮中国边界线,返回的是一个promise,可以单独设置线条样式 KmlDataSource
let chinaMapLine = Cesium.GeoJsonDataSource.load(“./static/json/china.json”,{
stroke: Cesium.Color.AQUA,
fill: Cesium.Color.PALETURQUOISE.withAlpha(0),//填充区域设置为透明
strokeWidth: 10,//在这里设置线宽度无效,所以在下边单独进行了线条样式设置
markerSymbol: ‘?’
});
//使用 entity.polygon.hierarchy._value.positions设置线条的颜色
//单独设置线条样式
chinaMapLine.then(dataSource => {
this.cesiumViewer.dataSources.add(dataSource);
let entities = dataSource.entities.values;
for (let i = 0; i < entities.length; i++) {
let entity = entities[i];
let polyPositions = entity.polygon.hierarchy.getValue(
Cesium.JulianDate.now()
).positions;
let positions = entity.polygon.hierarchy._value.positions;
entity.polyline = {
positions: positions,
width: 2,
material: Cesium.Color.fromBytes(3, 255, 255)
};
}
});
参考网址:https://blog.csdn.net/weixin_43564810/article/details/129148316