X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/1596713871672cc319b0d68b51a3698cc6bf0972..359d030a5b19de5e28460d5c9b2d0e1a59ed2fd3:/app/assets/javascripts/index/new_note.js diff --git a/app/assets/javascripts/index/new_note.js b/app/assets/javascripts/index/new_note.js index 55c5cbc93..397daa637 100644 --- a/app/assets/javascripts/index/new_note.js +++ b/app/assets/javascripts/index/new_note.js @@ -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"],