diff --git a/README.md b/README.md index cbd153fc..62aaea19 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,7 @@ Please do! [epf](https://github.com/epf), [integ3r](https://github.com/integ3r), [JasonMillward](https://github.com/JasonMillward), +[jonatkins](https://github.com/jonatkins), [mledoze](https://github.com/mledoze), [OshiHidra](https://github.com/OshiHidra), [phoenixsong6](https://github.com/phoenixsong6), @@ -89,7 +90,6 @@ Please do! [Xelio](https://github.com/Xelio), [ZauberNerd](https://github.com/ZauberNerd) - Hacking ------- diff --git a/code/utils_misc.js b/code/utils_misc.js index ef3a02f1..77b4ee62 100644 --- a/code/utils_misc.js +++ b/code/utils_misc.js @@ -207,7 +207,7 @@ window.setPermaLink = function(elm) { var c = map.getCenter(); var lat = Math.round(c.lat*1E6); var lng = Math.round(c.lng*1E6); - var qry = 'latE6='+lat+'&lngE6='+lng+'&z=' + map.getZoom(); + var qry = 'latE6='+lat+'&lngE6='+lng+'&z=' + (map.getZoom()-1); $(elm).attr('href', 'http://www.ingress.com/intel?' + qry); }