(note)
| 784 | } |
| 785 | |
| 786 | const gotNote = (note) => { |
| 787 | scene.enableLayers('notes'); |
| 788 | const selection = new Map().set(note.id, note); |
| 789 | context.enter('select', { selection: selection }); |
| 790 | this.centerZoomEase(note.loc, 19); |
| 791 | }; |
| 792 | |
| 793 | let note = osm.getNote(noteID); |
| 794 | if (note) { |
nothing calls this directly
no test coverage detected