Opens the Geolocation Picker to pick a location.
- Location:
type: Geolocation
The location selected by the user
- In Android, the only parameter value taken into account is the InitialLocation
Event "Select"
composite
&CarGeolocation = CarGeolocationGet() // Gets position of the Car from the Database or Session
If &CarGeolocation.IsEmpty()
&CarGeolocation = Geolocation.GetMyLocation(0,0,false) //Initialize with My Location if Empty.
endif
&GeolocationPickerParms.InitialLocation = &CarGeolocation
&CarGeolocation = Geolocation.PickLocation( &GeolocationPickerParms)
CarGeolocationSet(&CarGeolocation)
refresh
endcomposite
EndEvent