import { Images } from '@rnmapbox/maps';
ImagesImages defines the images used in Symbol etc. layers.
type Images = {
[object Object]: union; /* FIX ME NO DESCRIPTION */
}Specifies the external images in key-value pairs required for the shape source.
Keys are names - see iconImage expressions, values can be either urls-s objects
with format {uri: 'http://...'} or require('image.png') or import 'image.png'
ArrayIf you have an asset under Image.xcassets on iOS and the drawables directory on android
you can specify an array of string names with assets as the key ['pin'].
Additionally object with keys sdf, and strechX, strechY is supported for SDF icons
funcGets called when a Layer is trying to render an image whose key is not present in
any of the Images component of the Map.
signature:(imageKey:string) => void
ReactElement<T> | Array<TypedReactNode<T>> | neverFIX ME NO DESCRIPTION