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 GerardterBeke
Miguel-Cuellar wrote: Wed Aug 24, 2022 1:44 am
GerardterBeke wrote: Mon Aug 22, 2022 8:41 pm It should be working again.


 
That's right, I can now access with my password but it appears that I have been banned  :roll:
 

 
Fixed
 
GerardterBeke
State Manager
State Manager
Posts: 266
Has thanked: 146 times
Been thanked: 137 times
Send a message
Country Manager Oman & the Netherlands
WME Stroopwafel Staff

https://storage.googleapis.com/wazeoped ... Badge2.pnghttps://i.ibb.co/ZNbYyt5/RIPIain.png

Post by GerardterBeke
titchy_ wrote: Thu Aug 25, 2022 2:19 pm viewtopic.php?t=278659

Thanks!!

I requested a key but haven't received it. I wonder if the new forum chat has broken this?

 
It has. We can't send PM's anymore.
I'll send you a message
GerardterBeke
State Manager
State Manager
Posts: 266
Has thanked: 146 times
Been thanked: 137 times
Send a message
Country Manager Oman & the Netherlands
WME Stroopwafel Staff

https://storage.googleapis.com/wazeoped ... Badge2.pnghttps://i.ibb.co/ZNbYyt5/RIPIain.png

Post by GerardterBeke
The cause of the problem is the increased protection in WME due to CSP. You can try to use an extension to disable csp while I try to find a better solution:
https://chrome.google.com/webstore/deta ... mnodohkibj
GerardterBeke
State Manager
State Manager
Posts: 266
Has thanked: 146 times
Been thanked: 137 times
Send a message
Country Manager Oman & the Netherlands
WME Stroopwafel Staff

https://storage.googleapis.com/wazeoped ... Badge2.pnghttps://i.ibb.co/ZNbYyt5/RIPIain.png

Post by Horizon911
Hey Guys,
Thanks for the script. This is IMO badly needed evolution for proper (map) data processing!

One question/issue for the beginning:
Currently, the performance impact of SW script is quite significant. In the lowest zoom levels (like level 12 or 13 on my 3440x1440 display) it results in WME page to stop responding.
In general, I observe WME perf degradation, when it has to deal a lot with transparency. (e.g. the case of "Editable areas" or when there are many "Map Comment areas" displayed etc..)

Would it be possible to have there some performance-oriented optimizations?

How those optimizations could be... Option to show the plain grid without the transparent fillings (from certain zoom level), Hide the whole layer from certain zoom levels.

Thanks
 
Horizon911
Posts: 513
Has thanked: 279 times
Been thanked: 26 times
Send a message

Post by Horizon911
Heyyy,
I just received...

Code: Select all

Everything comes to an end.
You have been banned from using WME Stroopwafel.
You were banned for: "(Automatic Ban) Possible abuse detected. You will be contacted by WME Stroopwafel staff.". WME Stroopwafel can no longer be used, please uninstall the userscript to continue using Waze Map Editor.
...Can you pls check, what went wrong and fix it? Looks like a false positive.

Thanks
Horizon911
Horizon911
Posts: 513
Has thanked: 279 times
Been thanked: 26 times
Send a message

Post by J0kerNL
Dancingman81 wrote: Sun Dec 17, 2023 12:23 pm Hello,

any news here? It's a fantastic tool and I really miss it.

 
Hi,

The developer who was maintaining the script stopped eith editing (and maintaining the script) since he was busy IRL. Supposedly it is possible to commit in the github as he is still active in accepting those
J0kerNL
Country Manager
Country Manager
Posts: 95
Has thanked: 15 times
Been thanked: 26 times
Send a message
Yours sincerely,

https://s.waze.tools/cm.pnghttps://s.waze.tools/c5.pnghttps://s.waze.tools/beta.pnghttps://s.waze.tools/betc.pnghttps://s.waze.tools/mm.png
Mapraids:
2022: Pakistan
2019: Alabama - Florida, Pakistan
CM Taiwan
RM North Brabant and Limburg, The Netherlands
https://www.waze.com/user/editor/J0kerNL

Post by JanKlaaseen
Hi wmestroopwafel,

The script works well. I love it but I have found mistakes.
  1. Words are break
  2. It is not translated into the big languages
  3. Wrong anchor after translate it
=================================================

1. Words are break and 3. Wrong anchor
To solve these problems you only have to replace the source code line in the script:
#WME_Marker_Context_Aspects td:first-child { word-break: normal; width: 200px; }
Instead:
#WME_Marker_Context_Aspects td:first-child { word-break: break-all; width: 160px; }
Word-break:
You use break-all, but the words may be broken at any character. If you use normal, uses default line break rules (according to language)
Width:
After translation, width: 200px to fit window.

Below is a sample of the ploblem and results you will get:

Wrong width and word-break
Wrong word-break (applied width: 200px)
Solved (applied two options)

2. Spanish translation
You can translate your file into spanish language? on the contrary, I provide you the code of the spanish file and Just upload the code with a new script what might be called WME Stroopwafel ES, for example.
I could upload it, but you are the author and I would be glad if you were to do so.
Spanish code file

See you
JanKlaaseen
Waze Local Champs
Waze Local Champs
Posts: 634
Has thanked: 644 times
Been thanked: 492 times
Send a message

Post by JanKlaaseen
Hi stroopwafel,

First, I have opted for release a Spanish version, I'll try to keep up with releases to maintain functionality.
WME Stroopwafel Español

Second, while I was updating it to v1.6, I found a little visual errors.
  • Advanced settings > The input checkbox isn't inline with the text.
  • Advanced settings > The input checkbox and the input text are near.
  • Advanced settings > The input-text seems disorganized
==============================================================

To solve this issues you only need to change two parts of the code:
  1. We separated the paragraphs with <p> command
  2. We assigned a value of 100% to the input-text
  3. We changed the Advanced-Settings input display from block to inline-block
Below is a sample of the ploblem and results you will get:
Wrong input-text and block
Wrong input-text width
Solved (applied three options and a gift shading)

I provide you the code of the whole line "const HTML_MODAL_ADVANCED_SETTINGS" to make it easier to update. (in the original language)

Code: Select all

const HTML_MODAL_ADVANCED_SETTINGS = "<div id=\"Advanced-Settings\">    <h1>Advanced Settings</h1>    <p>Do not modify these settings if you are not a developer. Wrong settings could break the script.</p>    <p><label for=\"server-url\">Server URL</label>    <input type=\"text\" placeholder=\"https://example.com/api\" id=\"server-url\" /></p>    <p><label for=\"verbose-logs\">Verbose logs</label>    <input type=\"checkbox\" id=\"verbose-logs\" /></p>    <button id=\"reset-settings-button\">Reset all settings</button>    <button id=\"deactivate-button\">Deactivate (logout)</button>    <button id=\"copy-logs-button\">Copy logs</button></div><style>    #Advanced-Settings input {        display: inline-block;    }    #Advanced-Settings input#server-url {        width:100%;        ;border: 1px solid #999;        padding: 3px;        -webkit-border-radius: 10px;        -moz-border-radius: 10px;        border-radius: 10px;    }    #Advanced-Settings input#server-url:focus {        background: rgba(0,0,0,.1);        -webkit-border-radius: 10px;        -moz-border-radius: 10px;        border-radius: 10px;        outline      : none;    }    #Advanced-Settings button {        background: #fff;        color: #000;        border: 2px solid #ff0000;        -webkit-border-radius: 10px;        -moz-border-radius: 10px;        border-radius: 10px;        display: block;        margin: 10px 5%;        width: 90%;        text-align: center;    }    #Advanced-Settings button:hover {        background: #bbb;    }</style>";
JanKlaaseen
Waze Local Champs
Waze Local Champs
Posts: 634
Has thanked: 644 times
Been thanked: 492 times
Send a message
Last edited by JanKlaaseen on Wed May 26, 2021 1:18 am, edited 2 times in total.

Post by JanKlaaseen
Hi wmestroopwafel,

Ctrl is the principal key to use the script. to select multiple objects we use the same key.
JanKlaaseen
Waze Local Champs
Waze Local Champs
Posts: 634
Has thanked: 644 times
Been thanked: 492 times
Send a message
Last edited by JanKlaaseen on Wed May 26, 2021 9:29 am, edited 1 time in total.

Post by JanKlaaseen
Hi wmestroopwafel,

I think that you added a button to display the user manual.
JanKlaaseen
Waze Local Champs
Waze Local Champs
Posts: 634
Has thanked: 644 times
Been thanked: 492 times
Send a message
Last edited by JanKlaaseen on Wed May 26, 2021 9:29 am, edited 1 time in total.