Get a sneak peek at whats next for Permanent Hazards on our April 7th Office Hours!
Discussion for the unofficial, community-developed addons, extensions and scripts built for the Waze Map Editor.

The official index of these tools is the Community Plugins, Extensions and Tools wiki page.
Post by foxitrot
Timbones wrote:New Version: v0.6!
Enjoy! :D
I've installed it twice and do enjoy it (the links seem to work fine), but the link at the bottom of the list still says
"Waze Livemap Navigation Script v0.5".

Oversight?
foxitrot
Waze Global Champs
Waze Global Champs
Posts: 7263
Has thanked: 1282 times
Been thanked: 649 times
Send a message
...with the good old crashing :roll: Symbian 2.1.99.114 (on N-E52), while
trying to get used to the good new asocial Android 4.xx.0.yyy (on OP-X March-me-Low).

Post by foxitrot
Timbones wrote:If you install it again (again), you'll find it fixed.
:)
foxitrot
Waze Global Champs
Waze Global Champs
Posts: 7263
Has thanked: 1282 times
Been thanked: 649 times
Send a message
...with the good old crashing :roll: Symbian 2.1.99.114 (on N-E52), while
trying to get used to the good new asocial Android 4.xx.0.yyy (on OP-X March-me-Low).

Post by foxitrot
Timbones wrote:
  • Shows links in popup for next and previous instructions
I think that a "next »" link is not necessarily displayed also in the "arrive at destination" bubble.
foxitrot
Waze Global Champs
Waze Global Champs
Posts: 7263
Has thanked: 1282 times
Been thanked: 649 times
Send a message
...with the good old crashing :roll: Symbian 2.1.99.114 (on N-E52), while
trying to get used to the good new asocial Android 4.xx.0.yyy (on OP-X March-me-Low).

Post by foxitrot
Timbones wrote:
HavanaDay wrote:... does the query return travel times for segments? I was thinking this might be helpful to figure out why some routes get routed certain ways.
I think it might. I'll have a look next time I'm poking about with this script...
It could be interesting to compare the router's travel time and the sum of segments' travel times.
foxitrot
Waze Global Champs
Waze Global Champs
Posts: 7263
Has thanked: 1282 times
Been thanked: 649 times
Send a message
...with the good old crashing :roll: Symbian 2.1.99.114 (on N-E52), while
trying to get used to the good new asocial Android 4.xx.0.yyy (on OP-X March-me-Low).

Post by foxitrot
I do like the music :-)

Could you address the extraneous "next >>" link in the Arrival's bubble?
foxitrot
Waze Global Champs
Waze Global Champs
Posts: 7263
Has thanked: 1282 times
Been thanked: 649 times
Send a message
...with the good old crashing :roll: Symbian 2.1.99.114 (on N-E52), while
trying to get used to the good new asocial Android 4.xx.0.yyy (on OP-X March-me-Low).

Post by foxitrot
mboris34 wrote:Is it possible to add filters to this script?

- Age of the UR (I would like to see only oldest)
- Type of UR
Wrong thread - you've possibly meant the [Script] UROverview one?
foxitrot
Waze Global Champs
Waze Global Champs
Posts: 7263
Has thanked: 1282 times
Been thanked: 649 times
Send a message
...with the good old crashing :roll: Symbian 2.1.99.114 (on N-E52), while
trying to get used to the good new asocial Android 4.xx.0.yyy (on OP-X March-me-Low).

Post by foxitrot
Most turn icons were not showing up for weeks already. INTL. I thought I've already reported it before.
foxitrot
Waze Global Champs
Waze Global Champs
Posts: 7263
Has thanked: 1282 times
Been thanked: 649 times
Send a message
...with the good old crashing :roll: Symbian 2.1.99.114 (on N-E52), while
trying to get used to the good new asocial Android 4.xx.0.yyy (on OP-X March-me-Low).

Post by foxitrot
foxitrot wrote:
Timbones wrote:
  • Shows links in popup for next and previous instructions
I think that a "next »" link is not necessarily displayed also in the "arrive at destination" bubble.
I've finally convinced myself to patch this (around line 333), possibly Tim will think out something more elegant:

Code: Select all

    // add link to next instruction
    var nextLink = '';
    if (popupIndex > 1)
      nextLink += ' <a href="#" onclick="return jumpNext(' + (popupIndex-1) + ');">&laquo; back</a>'
>   instruction = document.getElementById('_jumpTo' + (popupIndex+1));
>   if (instruction)
      nextLink   += ' <a href="#" onclick="return jumpNext(' + (popupIndex+1) + ');">next &raquo;</a>'

    var lonlat = new OpenLayers.LonLat(lon = lon, lat = lat);
foxitrot
Waze Global Champs
Waze Global Champs
Posts: 7263
Has thanked: 1282 times
Been thanked: 649 times
Send a message
...with the good old crashing :roll: Symbian 2.1.99.114 (on N-E52), while
trying to get used to the good new asocial Android 4.xx.0.yyy (on OP-X March-me-Low).

Post by foxitrot
I've seen a route, which made a U-turn on a roundabout, using this icon in an UR:
https://world.waze.com/editor/images/ve ... bout_u.png
This addon's turn instruction for the corresponding route's part was a plain "roundabout u" without a corresponding icon.

Could the instruction be fixed/tweaked/enhanced? ;) Something like

Code: Select all

              case "ROUNDABOUT_ENTER":
              case "ROUNDABOUT_EXIT":           dirImage = "big_directions_roundabout"; break;
+             case "ROUNDABOUT_U":              dirImage = "big_directions_roundabout_u"; break;
              default: dirImage = '';
----
            opcode = opcode.replace(/ROUNDABOUT_(ENTER|EXIT)/, 'at the roundabout, take ');
+           opcode = opcode.replace(/ROUNDABOUT_U/, 'at the roundabout, make a U-turn');
            opcode = opcode.toLowerCase().replace(/_/, ' ');

foxitrot
Waze Global Champs
Waze Global Champs
Posts: 7263
Has thanked: 1282 times
Been thanked: 649 times
Send a message
...with the good old crashing :roll: Symbian 2.1.99.114 (on N-E52), while
trying to get used to the good new asocial Android 4.xx.0.yyy (on OP-X March-me-Low).

Post by foxitrot
Timbones wrote:
foxitrot wrote:I've seen a route, which made a U-turn on a roundabout... This addon's turn instruction for the corresponding route's part was a plain "roundabout u" without a corresponding icon.

Could the instruction be fixed/tweaked/enhanced? ;)
Like this? Waze Livemap Navigation Script [Beta]

Thanks :)
This was a very fast fix, thanks as well ;)
foxitrot
Waze Global Champs
Waze Global Champs
Posts: 7263
Has thanked: 1282 times
Been thanked: 649 times
Send a message
...with the good old crashing :roll: Symbian 2.1.99.114 (on N-E52), while
trying to get used to the good new asocial Android 4.xx.0.yyy (on OP-X March-me-Low).