Page 6 of 13

Re: Livemap Navigation Browser Addon - v0.6

Posted: Sat Mar 03, 2012 10:38 pm
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?

Re: Livemap Navigation Browser Addon - v0.6

Posted: Sat Mar 03, 2012 11:12 pm
by foxitrot
Timbones wrote:If you install it again (again), you'll find it fixed.
:)

Re: Livemap Navigation Browser Addon (v0.6)

Posted: Mon Nov 19, 2012 8:33 am
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.

Re: Livemap Navigation Browser Addon (v0.6)

Posted: Tue Nov 20, 2012 10:56 am
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.

Re: [Script] Livemap Navigation Browser Addon (v0.6)

Posted: Mon Dec 03, 2012 10:13 pm
by foxitrot
I do like the music :-)

Could you address the extraneous "next >>" link in the Arrival's bubble?

Re: [Script] Livemap Navigation Browser Addon (v0.6)

Posted: Wed Jan 09, 2013 12:47 pm
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?

Re: [Script] Livemap Navigation Browser Addon (v0.6)

Posted: Wed Jan 09, 2013 6:18 pm
by foxitrot
Most turn icons were not showing up for weeks already. INTL. I thought I've already reported it before.

Re: Livemap Navigation Browser Addon (v0.6)

Posted: Thu Jan 10, 2013 10:29 am
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);

Re: [Script] Livemap Navigation Browser Addon (v0.72) - Jan

Posted: Wed Apr 03, 2013 9:26 am
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(/_/, ' ');


Re: [Script] Livemap Navigation Browser Addon (v0.72) - Jan

Posted: Wed Apr 03, 2013 2:06 pm
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 ;)