Page 1 of 1

GPS CAPTURING

Posted: April 7th, 2019, 1:51 pm
by segxy4manu
Hello all,
Please i just want to confirm if there is any logic line to write in my program as i encountered GPS coordinate trying to recapture severally after it has been taken.
e.g
After taken GPS of 60 Buildings out of 140 Buildings and i partial saved then when i want to continue it will tend to open GPS coordinate for recapturing for those 60 Buildings again.... all need to do is to swipe on the CAPI screen and tap ok as the default so it can retain the previous GPS.
Is there a way in which when asked "Do you want to go to last saved position" and i said yes. that it will automatically go without Re-capturing again.

Thanks

Re: GPS CAPTURING

Posted: April 8th, 2019, 3:17 am
by lusia
I think you could do something like this,

Code: Select all

	if demode() = 1 then
		getGPS();
	endif;
the GPS function will be executed when you are in add mode, else the GPS function will be ignored.
Hope this will help you.