Update method (NotesGPSPosition - LotusScript)
Requests the platform to update the current NotesGPSPosition.
Defined in
Syntax
call NotesGPSPosition.Update()
Example
Dim gps as NotesGPS
Dim hasAccess as Boolean
Dim gpsPosition as NotesGPSPosition
Set gps= NotesSession.CreateGPS()
HasAccess = hasAccess = gps.Requestaccess()
If hasAccess then set gpsPosition = gps.getCurrentPosition()
Call gpsPosition.Update()