]> git.openstreetmap.org Git - rails.git/commitdiff
Simplify new-note marker placement - always in the centre
authorDan Stowell <danstowell@users.sourceforge.net>
Sun, 9 Aug 2015 09:56:22 +0000 (10:56 +0100)
committerDan Stowell <danstowell@users.sourceforge.net>
Sun, 9 Aug 2015 09:56:22 +0000 (10:56 +0100)
(This removes a tweak added in 40b3c82, which we believe is
no longer relevant now the new-note dialogue is sidebar
rather than bubble.)

app/assets/javascripts/index/new_note.js

index 55c5cbc934314f31670289d629833cb2313959d6..397daa637f4f7c2397b584a45339cda5a15d6231 100644 (file)
@@ -108,13 +108,7 @@ OSM.NewNote = function(map) {
     var mapSize = map.getSize();
     var markerPosition;
 
-    if (mapSize.y > 800) {
-      markerPosition = [mapSize.x / 2, mapSize.y / 2];
-    } else if (mapSize.y > 400) {
-      markerPosition = [mapSize.x / 2, 400];
-    } else {
-      markerPosition = [mapSize.x / 2, mapSize.y];
-    }
+    markerPosition = [mapSize.x / 2, mapSize.y / 2];
 
     newNote = L.marker(map.containerPointToLatLng(markerPosition), {
       icon: noteIcons["new"],