TABLE OF CONTENTS
The "Dynamic Image" property allows you to load images dynamically into Media, Sketch and Section fields, usually through a data source column or a formula result. The dynamic image property allows you to, with the use of formulae, dynamically change the image displayed in a Media, Sketch or Section field. The property accepts URLs to images stored on the web as well as references to data source cells that contain image URLs.
In some scenarios, you may want to link a choices field with a Data Source containing image URLs and then, based on the selected item in the choices field, have an image field dynamically update to show the image located at the selected column value.

Note:
Images can be placed as static images in section fields for display on the app, but they can also be dynamically pulled from a data source as long as the column type in the data source is set to Image. This would be done using the DSFIRST function within the section field's dynamic image property. For example:
DSFIRST('DATASOURCEID', 1, '{{this[0]}}="GUID"')
In the above example, "DATASOURCEID" is the External ID of the data source, "1" is the column containing the Image, and "GUID" is the GUID of the row containing the image. This directs the system to grab the image in the column and row matching these parameters. "GUID" can be replaced by a data name as well, if a field on your form will determine this.
The data source column 0 (the GUID column) may also be named something descriptive of the actual image, as long as every entry is still unique. This will make it easier to refer back to these images in other locations on your forms wherever you want to use them!
Dynamically download and display an image from a formula
Displaying a map image for the result of a Location field (or a given set of coordinates)
You'll first need to generate a URL which returns a PNG or JPG image. The app will then visit this URL and dynamically load the returned image. For this kind of requirement, you need to use a static maps API service. These services take in a set of longitude and latitude coordinates on a URL returning a map image. Most services require you to sign up for an account; many have a free usage option, too. Take a look at the site below, which links to multiple services and provides a handy way to generate the static maps URL:
Once you have selected a target service, you can then create a CONCAT() formula which will plug in the Location field's longitude and latitude values in the relevant spot of the static maps URL.
E.g., something like (if you used Google Maps API):
CONCAT(
'https://maps.googleapis.com/maps/api/staticmap?center=',
LAT({{mylocationfield}}),
',',
LON({{mylocationfield}},
'&zoom=13&scale=1&size=600x300&maptype=roadmap&key=YOURAPIKEYHERE&format=png&visual_refresh=true'))
In the above, the target location field has a data name of "mylocationfield" and your Google Maps API key would replace the YOURAPIKEYHERE text. Additionally you could change the zoom setting as desired.
Placeholder images and what they mean
1. "Loading" placeholder image

This is a placeholder image that is displayed whilst the app is either still busy downloading an image from the web, or, whilst it is busy loading the image from the device into the field.
2. "Not found" placeholder image

This is a placeholder image that is displayed when the app failed to download an image or failed to transfer it from the device into a field. Below are some potential reasons that an image can fail to load: