.attr('class', 'control-note');
$('<a>')
- .attr('class', 'control-button')
+ .attr('id', 'createnoteanchor')
+ .attr('class', 'control-button geolink')
+ .attr('data-minzoom', 12)
.attr('href', '#')
- .attr('title', 'Notes')
.html('<span class="icon note"></span>')
- .on('click', toggle)
.appendTo($container);
- function toggle(e) {
- e.stopPropagation();
- e.preventDefault();
-
- if (map.hasLayer(map.noteLayer)) {
- map.removeLayer(map.noteLayer);
- } else {
- map.addLayer(map.noteLayer);
- }
- }
-
return $container[0];
};