Working on learning maps...
We have a map control 'Map1'. I'm just working on getting the clicked location. Doesn't appear to work. Tried a few things, searched a ton for what I might be missing. Coming up blank.
I have this code in the OnSelect of Map1; added the notification trying to check if anything looks to be happening.
ClearCollect(
colLocation,
{
LocLat:Map1.ClickedLocation.Latitude,
LocLong: Map1.ClickedLocation.Longitude
}
);
Notify("Clicked: " & First(colLocation).LocLat,NotificationType.Success,2000)
Then I have a label trying to display the lat long, this is in the Text property
"Latitude: " & First(colLocation).LocLat & " Longitude: " & First(colLocation).LocLong
Thank you
@LaurensM @FLMike @WarrenBelz