mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
---- | |||
==== Livemap to WME ==== | ==== Livemap to WME ==== | ||
===== Shortcut Manager Setup for Livemap to WME ===== | ===== Shortcut Manager Setup for Livemap to WME ===== |
Revision as of 15:34, 12 May 2016
Livemap to WME
Shortcut Manager Setup for Livemap to WME
Code: Livemap to WME
javascript: //fjsawicki debugger; var list = document.getElementsByClassName("mouse-position") var latLon = list[0].innerHTML; var splitText = latLon.split(","); var wazePL = "https://www.waze.com/editor/?env=usa&lon=" + splitText[0] + "&lat=" + splitText[1] + "&zoom=3"; window.open(wazePL);
Shortcut Manager Setup for Google to WME
Code:Google to WME
javascript: //fjsawicki; bmtg var selectedText = "" //selectedText = window.getSelection().toString(); selectedText = document.getElementsByClassName('widget-reveal-card-lat-lng')[0].innerText; if (selectedText == ""){ alert("No Lat/Lon Diaglog"); return; } var splitText = selectedText.split(","); var wazePL = "https://www.waze.com/editor/?env=usa&lon=" + splitText[1] + "&lat=" + splitText[0] + "&zoom=8"; window.open(wazePL);