Skip to content

Commit f11939e

Browse files
committed
Update WME Form Filler.user.js
Fix lat/lon in PL
1 parent 8b9f8e1 commit f11939e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

WME Form Filler.user.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// @name WME Form Filler
33
// @description Use info from WME to automatically fill out related forms
44
// @namespace https://greasyfork.org/users/6605
5-
// @version 1.3
5+
// @version 1.3.1
66
// @match https://www.waze.com/*editor/*
77
// @match https://beta.waze.com/*editor/*
88
// @exclude https://www.waze.com/*user/editor/*
@@ -392,8 +392,8 @@ function ff_createPermalink(selection)
392392
{
393393
latLon = selection[0].model.getCenter().clone();
394394
latLon.transform(Waze.map.projection.projCode,Waze.map.displayProjection.projCode);
395-
lat = latLon.x;
396-
lon = latLon.y;
395+
lat = latLon.y;
396+
lon = latLon.x;
397397
}
398398

399399
var maxzoom = 2,

0 commit comments

Comments
 (0)