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
Waze location shortcut
Moderator: Martin
Re: Waze location shortcut
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.
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.
Index of Automagic useful thread List of my other useful posts (and others')
Xiaomi Redmi Note 5 (whyred), AOSP Extended v6.7 build 20200310 Official, Android Pie 9.0, Rooted.
Xiaomi Redmi Note 5 (whyred), AOSP Extended v6.7 build 20200310 Official, Android Pie 9.0, Rooted.
Re: Waze location shortcut
For control ui part look this topic. Desmanto given examples.
http://automagic4android.com/forum/view ... f=5&t=7704
http://automagic4android.com/forum/view ... f=5&t=7704
Code: Select all
loop = 0;
while(!existsElementById(______) AND loop < 10)
{
sleep(1000);
loop = loop + 1;
}
-
- Posts: 19
- Joined: 20 Jul 2016 09:32
Re: Waze location shortcut
Thank you, sometimes it's working, sometimes it just open Waze...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.