Questions tagged [waze]

Waze (pronounced ways), formerly "Freemap", is a GPS-based geographical navigation application program for smartphones with GPS support and display screens which provides turn-by-turn information and user-submitted travel times and route details

From wikipedia https://en.wikipedia.org/wiki/Waze

95 questions
10
votes
2 answers

Waze doesn't load navigation from Swift

I integrated Waze into my Swift app, but when I click on the button, Waze opens but nothing happens with the navigation. I juste see the app and that's all, instead of launching the navigation. Here is the code: @IBAction func openWazeAction(_…
cusmar
  • 1,903
  • 1
  • 20
  • 39
7
votes
1 answer

Navigation with Waze and Google Maps using Intent.createChooser shows Waze icon twice

I'm creating this question after finding the answer, I was not sure about the etiquette, but it seems to be OK (plus, I see now there's a built-in option). The problem was as described in the title, we created an intent chooser using code that…
MikeL
  • 2,756
  • 2
  • 23
  • 41
6
votes
1 answer

Adding waypoints to navigate in waze map

In my application i want implement waze map navigation for multiple destination,i just achieved single origin and destination navigation ,but here i want to navigation multiple waypoints. String url = String.format("waze://?ll=" +…
MurugananthamS
  • 2,395
  • 4
  • 20
  • 49
5
votes
1 answer

How to get GPS data from Waze with rest-client?

I'm trying to get my GPS data from the Waze app using the rest-client lib. I'm basicly trying to fake a login via the website https://www.waze.com/. After login (you can use JohnDoeSpeedy228:gre@tStory92) when you visit https://www.waze.com/editor/,…
narzero
  • 2,199
  • 5
  • 40
  • 73
4
votes
0 answers

How to integrate waze map with react-native app

I want to integrate waze map in A react-native app. Not to use deep linking Any documentations, any advices?
Aymen
  • 248
  • 3
  • 15
4
votes
1 answer

Possible to open 'Waze' from react app?

I want to have a google maps marker with two options: one for open google maps with the specific lng/lat - done. two - open "waze" application with the specific lng/lat - how can i do that? this is for the google maps:
ofirthedev
  • 177
  • 1
  • 3
  • 9
4
votes
0 answers

How to exclude an app from Intent Createchooser in Android

I want to know how to exclude app from intent createchooser I have the code without the exclude and the package name. Please help. Bellow is the code: the package is "com.waze". String uri = "geo:0,0?q=" + "address"; Uri u =…
4
votes
0 answers

Is it possible to use Waze's deep link to navigate with multiple stops?

Pretty much what it says in the title, i want to make an app that makes the driver go to multiple stops before arriving to his destination, is there a way to accomplish this with waze's deeplinks? I don't think it'll make much difference but the app…
ivan
  • 1,177
  • 8
  • 23
4
votes
1 answer

Waze Deep Links

I'm developing an App using Xamarin Forms (cross platform), and im trying to open Waze app from my app, passing latitude and longitude. It opens Waze very well, but Waze just open, it didn't try to find the address or the latitude/longitude that I…
Calvin Nunes
  • 6,376
  • 4
  • 20
  • 48
4
votes
3 answers

Set Custom Coordinates to a function, Waze Integration

I'm trying to implement navigation using Waze in my App, using their own API: here. I want to set in custom coordinates that are set in an array and then fit them in this code: func navigate(toLatitude latitude: Double , longitude: Double) { …
RandomGeek
  • 303
  • 5
  • 20
3
votes
0 answers

Waze Deep Link with multiple locations?

I'm currently making a web app and I want to "share" some addresses to Waze Deep Link to have a turn by turn navigation. I have tried to use different urls like this but nothing works.…
Jalil
  • 1,167
  • 11
  • 34
3
votes
1 answer

Chooser Intent that checks if there is a default app

Since Waze and Google Maps have different URI formats, I need to create two separate intents in order to make sure that apps will navigate user to the correct location. The main problem: I don't want to make user select navigation app every time. I…
Marius
  • 119
  • 8
3
votes
0 answers

Waze deeplink navigate to postcode

I need to send an intent to Waze app in Android to navigate to a UK postcode like "N3 2AL" I did it before with google map using this piece of code and works fine: String postcode = "N3 2AL"; postcode = postcode.trim().replaceAll(" ", "+"); Intent i…
Arash
  • 825
  • 2
  • 11
  • 19
3
votes
0 answers

Waze Android geo URI not working

I used to be able to start Waze navigation by using an intent with a geo URI scheme in Android. However, this no longer works. The Waze app is launched, but does not start navigation nor is there any indication that it processed the geo URI. I also…
Matt Kuo
  • 43
  • 3
3
votes
2 answers

Waze Deep Links broken?

On iOS, I can't make Waze navigation works when I launch the app from my app. It seems Waze Deep Links is broken. Am I the only one to have this bug? How Uber works for drivers if they don't use Deep Links? Here is what I tried, even if I run the…
cusmar
  • 1,903
  • 1
  • 20
  • 39
1
2 3 4 5 6 7