diff --git a/ui-ngx/src/assets/help/en_US/widget/lib/map/shape_fill_image_fn.md b/ui-ngx/src/assets/help/en_US/widget/lib/map/shape_fill_image_fn.md
index 34eacc7b9d..d0884236cb 100644
--- a/ui-ngx/src/assets/help/en_US/widget/lib/map/shape_fill_image_fn.md
+++ b/ui-ngx/src/assets/help/en_US/widget/lib/map/shape_fill_image_fn.md
@@ -42,7 +42,8 @@ In case no data is returned, default fill image will be used.
-
Calculate image URL and rotation angle depending on
windSpeed and windDirection telemetry values for a weather station device type.
-Let's assume 3 images are defined in the Shape fill images section. Each image corresponds to a particular wind speed level: low (e.g., <5 m/s), medium (e.g., 5-15 m/s), and high (e.g., >15 m/s).
+Let's assume 3 images are defined in the Shape fill images section. Each image corresponds to a particular wind speed level: low (e.g., <5 m/s), medium (e.g., 5-15 m/s), and high (e.g., >15 m/s).
+Ensure that the Type, windSpeed and windDirection keys are included in the additional data keys configuration.
@@ -71,5 +72,24 @@ if (type === 'weather station') {
{:copy-code}
```
+
+-
+Returns the image URL in the
image attribute for a weather station device type.
+Ensure that the Type and image keys are included in additional data keys configuration.
+
+
+
+```javascript
+const type = data.Type;
+const image = data.image;
+if (type === 'weather station' && image !== undefined) {
+ return {
+ url: image,
+ opacity: 0.8
+ };
+}
+{:copy-code}
+```
+