diff --git a/src/App.css b/src/App.css index db7594ada3c6bd302f0523b85bfcc8e99230f002..33c48b29df283c7911e321eaab79b12ad34f65da 100644 --- a/src/App.css +++ b/src/App.css @@ -143,4 +143,26 @@ div.login button:hover { .leaflet-draw-toolbar .leaflet-draw-draw-textbox { background-image: url('icons/button-textbox.png'); background-size: 30px 30px; -} \ No newline at end of file +} + +/* by default leaflet doesn't allow selecting content in tooltips; overriding */ +.leaflet-tooltip { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; + pointer-events: auto; +} + +/* Editing editable tooltips */ +.editable { + cursor: text; + min-width: 120px; + min-height: 18px; +} + +[contenteditable=true]:empty:before { + content: attr(placeholder); + display: block; /* For Firefox */ + color: #777; +} diff --git a/src/components/DrawTools.js b/src/components/DrawTools.js index dfb01584f5e3bb870733d42048bc232bad166401..45858167ec21d5699c827a127ff727af5ff76789 100644 --- a/src/components/DrawTools.js +++ b/src/components/DrawTools.js @@ -11,31 +11,19 @@ let emptyicon = L.icon({ iconAnchor: [1, 1] }); -/*Class for new marker */ +// class for text field L.Draw.MarkerTextBox = L.Draw.Marker.extend({ options: { icon: emptyicon, - repeatMode: true + repeatMode: false, }, initialize: function (map, options) { - // important to have a unique type, so that it won't get mixed up with other elements - this.type = 'textbox'; + this.type = 'textbox'; // important to have a unique type, so that it won't get mixed up with other elements this.featureTypeCode = 'textbox'; L.Draw.Feature.prototype.initialize.call(this, map, options); } }); -//Redefinitions d'éléments de DrawToolbar -L.DrawToolbar.prototype.options={ - polyline: {}, - polygon: {}, - rectangle: {}, - circle: {}, - marker: {}, - textbox: {}, - uploadTrace: {} -}; - L.DrawToolbar.include ({ getModeHandlers: function(map) { return [{ @@ -72,10 +60,12 @@ class DrawTools extends Component { if (e.layerType === 'polyline' && e.layer.getLatLngs().length === 1) { e.layer.remove(); return; - } - if (e.layerType === 'textbox') { - e.layer.bindTooltip('say hello to mr. akers', {permanent: true}); - } + } + // binding text field to textbox + if (e.layerType === 'textbox') { + e.layer.bindTooltip('<div class="editable" contenteditable="true" placeholder="Type here"></div>', {permanent: true}); + } + // turning layer data to geoJSON let layer = e.layer; let geoJSON = layer.toGeoJSON(); console.log(JSON.stringify(geoJSON, null, 4)); // makes the output readable in the console @@ -86,7 +76,7 @@ class DrawTools extends Component { // "It's important to wrap EditControl component into FeatureGroup component from react-leaflet. The elements you draw will be added to this FeatureGroup layer, when you hit edit button only items in this layer will be edited." <FeatureGroup> <EditControl - position='topright' + position='topright' onCreated={this._onCreated} draw={{ circle: { @@ -119,7 +109,7 @@ class DrawTools extends Component { } }, marker: { - repeatMode: true + repeatMode: false }, circlemarker: false }}