Last location of the car

mansegrod

New member
Good afternoon, I have a routine in Task that records the last where I left the car exactly (comparing the location registered through the network and through gps)
When I click on a widget it runs the google maps application (passing it the variable that saves the location) where I can see the marker of the car's position.

Would anyone know how to do the same task in Macrodroid? I have tried but I do not know the capacity of this app

I leave you the actions that my routine performs after disconnecting the bluetooth from the car:

Variables: %HOURGPS, %ORIGIN, %PRECISION, %PARKING

Actions:
1- Delete %HOURGPS
2- Delete %ORIGIN
3- Delete %PRECISION
4- Delete %PARKING
5- Mode location = high precision
6- Get location (I think that it is force location in Macrodroid ¿? )
7- Set %ORIGIN = NETWORK
8- Set %PARKING = %LOCN (LOCN is a local variable of Tasker)
9- Set %PRECISION = %LOCNACC (LOCNACC is a local variable of Tasker)
10- IF
11- Set %PARKING = %LOC -> IF %LOCTMS > %TIMES-45
12- Set %ORIGIN = GPS -> IF %LOCTMS > %TIMES-45
13- Set %PRECISION = %LOCACC -> IF %LOCTMS > %TIMES-45
14- END IF
15- Set %HOURGPS = %TIME (TIME is a local variable of Tasker)
16- Pop-up
[Text -> Precision %PRECISION m.
Origin %ORIGIN
Hour %HOURGPS
 
Top