master
TuxCoder 2019-07-25 22:17:34 +02:00
parent 46ef181ec7
commit f7f81ebc47
6 changed files with 21 additions and 9 deletions

2
dist/main.css vendored
View File

@ -391,6 +391,8 @@ html, body {
right: .25em; right: .25em;
top: 10em; top: 10em;
font-size: 1.5em; } font-size: 1.5em; }
.ol-messure .ol-messure-true {
background-color: green !important; }
.tooltip { .tooltip {
position: relative; position: relative;

2
dist/main.css.map vendored

File diff suppressed because one or more lines are too long

7
dist/main.js vendored
View File

@ -47063,7 +47063,7 @@ var MessureControl_MessureControl = /*@__PURE__*/(function (Control) {
* Message to show when the user is drawing a line. * Message to show when the user is drawing a line.
* @type {string} * @type {string}
*/ */
this.continueLineMsg = 'Click to continue drawing the line'; this.continueLineMsg = 'Click to continue drawing the line</br>Doubleclick to end path';
var type = (false ? undefined : 'LineString'); var type = (false ? undefined : 'LineString');
this.draw_ = new interaction_Draw({ this.draw_ = new interaction_Draw({
@ -47158,8 +47158,10 @@ var MessureControl_MessureControl = /*@__PURE__*/(function (Control) {
this.pointerMoveHandler_ = (e) => self.pointerMoveHandler(e); this.pointerMoveHandler_ = (e) => self.pointerMoveHandler(e);
map.on('pointermove', this.pointerMoveHandler_); map.on('pointermove', this.pointerMoveHandler_);
map.addInteraction(this.draw_); map.addInteraction(this.draw_);
this.button_.classList.add('active');
this.active_ = true; this.active_ = true;
this.setClassName_(this.button_, this.active_);
} }
/** /**
@ -47170,7 +47172,8 @@ var MessureControl_MessureControl = /*@__PURE__*/(function (Control) {
map.un('pointermove', this.pointerMoveHandler_); map.un('pointermove', this.pointerMoveHandler_);
map.removeInteraction(this.draw_); map.removeInteraction(this.draw_);
this.helpTooltipElement.classList.add('hidden'); this.helpTooltipElement.classList.add('hidden');
this.active_ = true; this.active_ = false;
this.setClassName_(this.button_, this.active_);
} }
/** /**

2
dist/main.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -163,7 +163,7 @@ var MessureControl = /*@__PURE__*/(function (Control) {
* Message to show when the user is drawing a line. * Message to show when the user is drawing a line.
* @type {string} * @type {string}
*/ */
this.continueLineMsg = 'Click to continue drawing the line'; this.continueLineMsg = 'Click to continue drawing the line</br>Doubleclick to end path';
var type = (false ? 'Polygon' : 'LineString'); var type = (false ? 'Polygon' : 'LineString');
this.draw_ = new Draw({ this.draw_ = new Draw({
@ -258,8 +258,10 @@ var MessureControl = /*@__PURE__*/(function (Control) {
this.pointerMoveHandler_ = (e) => self.pointerMoveHandler(e); this.pointerMoveHandler_ = (e) => self.pointerMoveHandler(e);
map.on('pointermove', this.pointerMoveHandler_); map.on('pointermove', this.pointerMoveHandler_);
map.addInteraction(this.draw_); map.addInteraction(this.draw_);
this.button_.classList.add('active');
this.active_ = true; this.active_ = true;
this.setClassName_(this.button_, this.active_);
} }
/** /**
@ -270,7 +272,8 @@ var MessureControl = /*@__PURE__*/(function (Control) {
map.un('pointermove', this.pointerMoveHandler_); map.un('pointermove', this.pointerMoveHandler_);
map.removeInteraction(this.draw_); map.removeInteraction(this.draw_);
this.helpTooltipElement.classList.add('hidden'); this.helpTooltipElement.classList.add('hidden');
this.active_ = true; this.active_ = false;
this.setClassName_(this.button_, this.active_);
} }
/** /**

View File

@ -18,9 +18,12 @@ html, body {
} }
.ol-messure { .ol-messure {
right: .25em; right: .25em;
top: 10em; top: 10em;
font-size: 1.5em; font-size: 1.5em;
.ol-messure-true {
background-color: green !important;
}
} }
.tooltip { .tooltip {
@ -55,3 +58,4 @@ html, body {
.tooltip-static:before { .tooltip-static:before {
border-top-color: #ffcc33; border-top-color: #ffcc33;
} }