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.GisEyeMapGISSymbolMaterialProperty({
          circleColor: new Cesium.Color(1.0, 0.0, 0.0, 1.0),
          triangleColor: new Cesium.Color(1.0, 1.0, 0.0, 1.0),
          rate: 1,
          alpha: 1
        })
      }
  });