bruce-models 7.1.63 → 7.1.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10918,6 +10918,23 @@
10918
10918
  // Render a cylinder with a fixed meter size.
10919
10919
  EPointType["Cylinder"] = "CYLINDER";
10920
10920
  })(EPointType = Style.EPointType || (Style.EPointType = {}));
10921
+ /**
10922
+ * Dictates whether a polygon renders a flat colour fill or a texture image.
10923
+ * Default is "COLOR".
10924
+ */
10925
+ let EPolygonFillType;
10926
+ (function (EPolygonFillType) {
10927
+ EPolygonFillType["Color"] = "COLOR";
10928
+ EPolygonFillType["Texture"] = "TEXTURE";
10929
+ })(EPolygonFillType = Style.EPolygonFillType || (Style.EPolygonFillType = {}));
10930
+ /**
10931
+ * Available ways to tint a rendered texture into a colour gradient.
10932
+ * Currently used for ERDDAP generated textures which are BLACK_WHITE scale images to be recoloured by UI.
10933
+ */
10934
+ let ETextureColorMaskType;
10935
+ (function (ETextureColorMaskType) {
10936
+ ETextureColorMaskType["BlackWhite"] = "BLACK_WHITE";
10937
+ })(ETextureColorMaskType = Style.ETextureColorMaskType || (Style.ETextureColorMaskType = {}));
10921
10938
  /**
10922
10939
  * Returns a list of styles.
10923
10940
  * @param params
@@ -18995,7 +19012,7 @@
18995
19012
  })(exports.UrlUtils || (exports.UrlUtils = {}));
18996
19013
 
18997
19014
  // This is updated with the package.json version on build.
18998
- const VERSION = "7.1.63";
19015
+ const VERSION = "7.1.64";
18999
19016
 
19000
19017
  exports.VERSION = VERSION;
19001
19018
  exports.AbstractApi = AbstractApi;