If I type an address into the Address Input control I can get it to show on the map.
ClearCollect(
locationsMap,
{
Latitude: txtAddressInput.SelectedLatitude,
Longitude: txtAddressInput.SelectedLongitude
}
)
The collection 'locationsMap' is used in the Items property of the map.
When I try to load the same address into the Address Input control instead of typing it, the map does not seem to show it.
Is there a way to get it to show without typing it into Address Input control?
Any help appreciated.
Thank you