Sha256: 2b3254135afbdfcf0d9dcd85e82dff86a3e05412170f01ee829323e9465056f6
Contents?: true
Size: 1.76 KB
Versions: 5
Compression:
Stored size: 1.76 KB
Contents
/* * Leaflet.draw assumes that you have already included the Leaflet library. */ L.drawVersion = '0.2.3-dev'; L.drawLocal = { draw: { toolbar: { actions: { title: 'Cancel drawing', text: 'Cancel' }, buttons: { polyline: 'Draw a polyline', polygon: 'Draw a polygon', rectangle: 'Draw a rectangle', circle: 'Draw a circle', marker: 'Draw a marker' } }, handlers: { circle: { tooltip: { start: 'Click and drag to draw circle.' } }, marker: { tooltip: { start: 'Click map to place marker.' } }, polygon: { tooltip: { start: 'Click to start drawing shape.', cont: 'Click to continue drawing shape.', end: 'Click first point to close this shape.' } }, polyline: { error: '<strong>Error:</strong> shape edges cannot cross!', tooltip: { start: 'Click to start drawing line.', cont: 'Click to continue drawing line.', end: 'Click last point to finish line.' } }, rectangle: { tooltip: { start: 'Click and drag to draw rectangle.' } }, simpleshape: { tooltip: { end: 'Release mouse to finish drawing.' } } } }, edit: { toolbar: { actions: { save: { title: 'Save changes.', text: 'Save' }, cancel: { title: 'Cancel editing, discards all changes.', text: 'Cancel' } }, buttons: { edit: 'Edit layers.', editDisabled: 'No layers to edit.', remove: 'Delete layers.', removeDisabled: 'No layers to delete.' } }, handlers: { edit: { tooltip: { text: 'Drag handles, or marker to edit feature.', subtext: 'Click cancel to undo changes.' } }, remove: { tooltip: { text: 'Click on a feature to remove' } } } } };
Version data entries
5 entries across 5 versions & 1 rubygems