]> git.openstreetmap.org Git - rails.git/commitdiff
Rename updateMarker() to addCreatedNoteMarker()
authorAnton Khorev <tony29@yandex.ru>
Wed, 25 Dec 2024 00:38:30 +0000 (03:38 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 31 Dec 2024 20:46:29 +0000 (23:46 +0300)
This function doesn't update any existing marker.

app/assets/javascripts/index/new_note.js

index a3b809d0d8ededd00841b98686c30178d5c2ae09..bd093e11adcb6fca2a45bd7fb72c6843dea0164e 100644 (file)
@@ -49,7 +49,7 @@ OSM.NewNote = function (map) {
     });
   }
 
-  function updateMarker(feature) {
+  function addCreatedNoteMarker(feature) {
     var marker = L.marker(feature.geometry.coordinates.reverse(), {
       icon: noteIcons[feature.properties.status],
       opacity: 0.9,
@@ -144,7 +144,7 @@ OSM.NewNote = function (map) {
 
       createNote(location, text, (feature) => {
         content.find("textarea").val("");
-        updateMarker(feature);
+        addCreatedNoteMarker(feature);
         noteLayer.removeLayer(newNoteMarker);
         newNoteMarker = null;
         addNoteButton.removeClass("active");