Map Editor Interface and Controls/ZoomLevel: Difference between revisions View history

imported>Deeploz
m (Deeploz moved page WME JavaScript development to Community Plugins, Extensions and Tools/WME JavaScript development without leaving a redirect: cannot be a standalone page. attached to the main article about Forums.)
imported>Deeploz
(Marked as global wiki page)
Line 1: Line 1:
==Best practices for development of JavaScript extensions==
<!--if the section parameter is defined, do not place the visible banner, only as the code block for the top of a section-->{{GlobalMark/visible}}
<!--
#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-----
####    This page has been curated  ####
####    to be included in the new    ####
####    Wazeopedia - GLOBAL Wiki.  ####
####    Please do not make any      ####
####    edits on this page without  ####
####    PRIOR CONSENSUS in the Wiki  ####
####    Updates and Discussions      ####
####    forum thread for this page.  ####
####    If a specific forum thread  ####
####    for this page doesn't exist  ####
####    please start one.            ####
####        www.waze.com/forum/      ####
####        viewforum.php?f=276      ####
#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-->


All normal best practice guidelines apply; some references are:
{| class="wikitable" style="background:none; text-align:center; margin: 1em auto 1em auto" border="1"                                                                          
* [http://www.javascripttoolbox.com/bestpractices/ JavaScript Toolbox]
|-
* [http://sarfraznawaz.wordpress.com/2012/02/19/842/ Sarfraz Ahmed's Blog]
! Zoom Level
 
! Meter Scale
Run your code through some useful analyzers to head off potential problems, like:
! Foot Scale
* [http://www.jshint.com JSHint]
|-
* [http://www.jslint.com JSLint]
| 10 || 2 || 10
* [http://developers.google.com/closure/ JavaScript Closure Tools]
|-
 
| 9 || 5 || 10
==jQuery==
|-
WME (''Waze Map Editor'') is built on jQuery. This makes it easy to access and manipulate properties and directly reference the built-in Waze objects underlying WME. Using jQuery enables tighter integration into WME, reduces code, and builds on what is already there.  WME runs jQuery 1.7 vanilla (which does not include any optional modules like jQuery UI).
| 8 || 10 || 20
 
|-
==Prefix for variables and functions==
| 7 || 10 || 50
To ensure that your code is safe from collision with other scripts and extensions, please prefix all variables and functions with a prefix of your choosing (this includes local variables and global variables, since your entire script is made public when it is loaded in WME). An example would be instead of naming a variable "version", name it "coolscript_version" instead, if your script is named "Cool Script".
|-
 
| 6 || 20 || 100
==Code encapsulation==
|-
While not technically code encapsulation in the object oriented sense, please encapsulate all code in a function, except requisite bootstrap code and initializer calls.
| 5 || 100 || 200
 
|-
==UserScript Bootstraping==
| 4 || 100 || 500
When creating user scripts for Greasemonkey, Chrome, or TamperMonkey, use the following bootstrap at the start of your script. [[User:timbones|timbones]] did extensive research on this to make sure it is completely cross-browser compatible. Not only does it work in GreaseMonkey, Chrome, and TamperMonkey, but can also be dropped into a Safari Extension without any recoding.
|-
 
| 3 || 200 || 1000
<pre style="width:54em;margin-left:-1em;">
|-
function coolscript_bootstrap()
| 2 || 500 || 2000
{
|-
var bGreasemonkeyServiceDefined    = false;
| 1 || 1000 || 5000
 
|-
try
| 0 || 2000 || 1 mile
{
|-
if ("object" === typeof Components.interfaces.gmIGreasemonkeyService)
|}
{
bGreasemonkeyServiceDefined = true;
}
}
catch (err)
{
//Ignore.
}
if ( "undefined" === typeof unsafeWindow  || ! bGreasemonkeyServiceDefined)
{
unsafeWindow    = ( function ()
{
var dummyElem  = document.createElement('p');
dummyElem.setAttribute ('onclick', 'return window;');
return dummyElem.onclick ();
} ) ();
}
/* begin running the code! */
coolscript_init();
}
 
function coolscript_init()
{
//run your code here
}
 
// [...]
// then at the end of your script, call the bootstrap to get things started
coolscript_bootstrap();
</pre>

Revision as of 12:41, 1 July 2015

Template:GlobalMark/visible

Zoom Level Meter Scale Foot Scale
10 2 10
9 5 10
8 10 20
7 10 50
6 20 100
5 100 200
4 100 500
3 200 1000
2 500 2000
1 1000 5000
0 2000 1 mile