MapGIS面符号纹理
Name | Type | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
object |
入参对象
|
Example:
let lon = 104;
let lat = 30;
viewer.entities.add({
name: 'EllipsoidFade',
position: Cesium.Cartesian3.fromDegrees(lon, lat, 100.0),
ellipse: {
height: 0,
semiMinorAxis: 3000.0,
semiMajorAxis: 3000.0,
material: new GisEye.GisEyeMapGISSymbolFillMaterialProperty({
lineColor: new Cesium.Color(1.0, 0.0, 0.0, 1.0),
fillColor: new Cesium.Color(1.0, 1.0, 0.0, 1.0),
repeatNum: {
x: 1,
y: 1
},
alpha: 1
})
}
});