Page 1 of 1

Waze location shortcut

Posted: 24 Dec 2018 06:56
by viorel.rusu
Hi,
There is any way to implement something like a waze location shortcut (working with favorites, for example)?
I made something with CONTROL UI, but sometimes are delays, etc... and doesn't work all the time because more loops and waits are needed...
Any help?
Thank you

Re: Waze location shortcut

Posted: 24 Dec 2018 17:12
by Desmanto
Try the google maps example at the action Start Activity, choose examples : Google Maps with coordinate, but change the packagename to waze.
Action : android.intent.action.VIEW
Data URI : geo:48.858231,2.294462?z=13
Explicit Component : check
Package Name : com.waze

Don't know if it will work. But I assume it will, since both are maps app.

Re: Waze location shortcut

Posted: 25 Dec 2018 00:11
by anuraag
For control ui part look this topic. Desmanto given examples.
http://automagic4android.com/forum/view ... f=5&t=7704

Code: Select all

loop = 0;
while(!existsElementById(______) AND loop < 10)
{
  sleep(1000);
  loop = loop + 1;
}

Re: Waze location shortcut

Posted: 01 Jan 2019 13:20
by viorel.rusu
Desmanto wrote:Try the google maps example at the action Start Activity, choose examples : Google Maps with coordinate, but change the packagename to waze.
Action : android.intent.action.VIEW
Data URI : geo:48.858231,2.294462?z=13
Explicit Component : check
Package Name : com.waze

Don't know if it will work. But I assume it will, since both are maps app.
Thank you, sometimes it's working, sometimes it just open Waze...