Merge pull request #6069 from tchandelle/translate-no-features

If there is no features option, all features will be translated.
This commit is contained in:
Andreas Hocevar
2016-11-10 13:32:52 +01:00
committed by GitHub
2 changed files with 115 additions and 33 deletions

View File

@@ -1,6 +1,7 @@
goog.provide('ol.interaction.Translate'); goog.provide('ol.interaction.Translate');
goog.require('ol'); goog.require('ol');
goog.require('ol.Collection');
goog.require('ol.events.Event'); goog.require('ol.events.Event');
goog.require('ol.functions'); goog.require('ol.functions');
goog.require('ol.array'); goog.require('ol.array');
@@ -14,10 +15,10 @@ goog.require('ol.interaction.Pointer');
* @constructor * @constructor
* @extends {ol.interaction.Pointer} * @extends {ol.interaction.Pointer}
* @fires ol.interaction.Translate.Event * @fires ol.interaction.Translate.Event
* @param {olx.interaction.TranslateOptions} options Options. * @param {olx.interaction.TranslateOptions=} opt_options Options.
* @api * @api
*/ */
ol.interaction.Translate = function(options) { ol.interaction.Translate = function(opt_options) {
ol.interaction.Pointer.call(this, { ol.interaction.Pointer.call(this, {
handleDownEvent: ol.interaction.Translate.handleDownEvent_, handleDownEvent: ol.interaction.Translate.handleDownEvent_,
handleDragEvent: ol.interaction.Translate.handleDragEvent_, handleDragEvent: ol.interaction.Translate.handleDragEvent_,
@@ -25,6 +26,7 @@ ol.interaction.Translate = function(options) {
handleUpEvent: ol.interaction.Translate.handleUpEvent_ handleUpEvent: ol.interaction.Translate.handleUpEvent_
}); });
var options = opt_options ? opt_options : {};
/** /**
* @type {string|undefined} * @type {string|undefined}
@@ -88,9 +90,12 @@ ol.interaction.Translate.handleDownEvent_ = function(event) {
if (!this.lastCoordinate_ && this.lastFeature_) { if (!this.lastCoordinate_ && this.lastFeature_) {
this.lastCoordinate_ = event.coordinate; this.lastCoordinate_ = event.coordinate;
ol.interaction.Translate.handleMoveEvent_.call(this, event); ol.interaction.Translate.handleMoveEvent_.call(this, event);
var features = this.features_ || new ol.Collection([this.lastFeature_]);
this.dispatchEvent( this.dispatchEvent(
new ol.interaction.Translate.Event( new ol.interaction.Translate.Event(
ol.interaction.Translate.EventType.TRANSLATESTART, this.features_, ol.interaction.Translate.EventType.TRANSLATESTART, features,
event.coordinate)); event.coordinate));
return true; return true;
} }
@@ -108,9 +113,12 @@ ol.interaction.Translate.handleUpEvent_ = function(event) {
if (this.lastCoordinate_) { if (this.lastCoordinate_) {
this.lastCoordinate_ = null; this.lastCoordinate_ = null;
ol.interaction.Translate.handleMoveEvent_.call(this, event); ol.interaction.Translate.handleMoveEvent_.call(this, event);
var features = this.features_ || new ol.Collection([this.lastFeature_]);
this.dispatchEvent( this.dispatchEvent(
new ol.interaction.Translate.Event( new ol.interaction.Translate.Event(
ol.interaction.Translate.EventType.TRANSLATEEND, this.features_, ol.interaction.Translate.EventType.TRANSLATEEND, features,
event.coordinate)); event.coordinate));
return true; return true;
} }
@@ -129,22 +137,18 @@ ol.interaction.Translate.handleDragEvent_ = function(event) {
var deltaX = newCoordinate[0] - this.lastCoordinate_[0]; var deltaX = newCoordinate[0] - this.lastCoordinate_[0];
var deltaY = newCoordinate[1] - this.lastCoordinate_[1]; var deltaY = newCoordinate[1] - this.lastCoordinate_[1];
if (this.features_) { var features = this.features_ || new ol.Collection([this.lastFeature_]);
this.features_.forEach(function(feature) {
var geom = feature.getGeometry(); features.forEach(function(feature) {
geom.translate(deltaX, deltaY); var geom = feature.getGeometry();
feature.setGeometry(geom);
});
} else if (this.lastFeature_) {
var geom = this.lastFeature_.getGeometry();
geom.translate(deltaX, deltaY); geom.translate(deltaX, deltaY);
this.lastFeature_.setGeometry(geom); feature.setGeometry(geom);
} });
this.lastCoordinate_ = newCoordinate; this.lastCoordinate_ = newCoordinate;
this.dispatchEvent( this.dispatchEvent(
new ol.interaction.Translate.Event( new ol.interaction.Translate.Event(
ol.interaction.Translate.EventType.TRANSLATING, this.features_, ol.interaction.Translate.EventType.TRANSLATING, features,
newCoordinate)); newCoordinate));
} }
}; };
@@ -187,19 +191,13 @@ ol.interaction.Translate.handleMoveEvent_ = function(event) {
* @private * @private
*/ */
ol.interaction.Translate.prototype.featuresAtPixel_ = function(pixel, map) { ol.interaction.Translate.prototype.featuresAtPixel_ = function(pixel, map) {
var found = null; return map.forEachFeatureAtPixel(pixel,
var intersectingFeature = map.forEachFeatureAtPixel(pixel,
function(feature) { function(feature) {
return feature; if (!this.features_ ||
ol.array.includes(this.features_.getArray(), feature)) {
return feature;
}
}, this, this.layerFilter_); }, this, this.layerFilter_);
if (this.features_ &&
ol.array.includes(this.features_.getArray(), intersectingFeature)) {
found = intersectingFeature;
}
return found;
}; };

View File

@@ -77,29 +77,85 @@ describe('ol.interaction.Translate', function() {
map.handleMapBrowserEvent(event); map.handleMapBrowserEvent(event);
} }
/**
* Tracks events triggered by the interaction as well as feature
* modifications. Helper function to
* @param {ol.Feature} feature Translated feature.
* @param {ol.interaction.Translate} interaction The interaction.
* @return {Array<ol.interaction.Translate.Event|string>} events
*/
function trackEvents(feature, interaction) {
var events = [];
feature.on('change', function(event) {
events.push('change');
});
interaction.on('translatestart', function(event) {
events.push(event);
});
interaction.on('translateend', function(event) {
events.push(event);
});
return events;
}
/**
* Validates the event array to verify proper event sequence. Checks
* that first and last event are correct TranslateEvents and that feature
* modifications event are in between.
* @param {Array<ol.interaction.Translate.Event|string>} events The events.
* @param {Array<ol.Feature>} features The features.
*/
function validateEvents(events, features) {
var startevent = events[0];
var endevent = events[events.length - 1];
// first event should be translatestart
expect(startevent).to.be.an(ol.interaction.Translate.Event);
expect(startevent.type).to.eql('translatestart');
// last event should be translateend
expect(endevent).to.be.an(ol.interaction.Translate.Event);
expect(endevent.type).to.eql('translateend');
// make sure we get change events to events array
expect(events.length > 2).to.be(true);
// middle events should be feature modification events
for (var i = 1; i < events.length - 1; i++) {
expect(events[i]).to.equal('change');
}
// TranslateEvents should include the expected features
expect(startevent.features.getArray()).to.eql(features);
expect(endevent.features.getArray()).to.eql(features);
}
describe('constructor', function() { describe('constructor', function() {
it('creates a new interaction', function() { it('creates a new interaction', function() {
var draw = new ol.interaction.Translate({ var translate = new ol.interaction.Translate({
features: features features: features
}); });
expect(draw).to.be.a(ol.interaction.Translate); expect(translate).to.be.a(ol.interaction.Translate);
expect(draw).to.be.a(ol.interaction.Interaction); expect(translate).to.be.a(ol.interaction.Interaction);
}); });
}); });
describe('moving features', function() { describe('moving features, with features option', function() {
var draw; var translate;
beforeEach(function() { beforeEach(function() {
draw = new ol.interaction.Translate({ translate = new ol.interaction.Translate({
features: new ol.Collection([features[0]]) features: new ol.Collection([features[0]])
}); });
map.addInteraction(draw); map.addInteraction(translate);
}); });
it('moves a selected feature', function() { it('moves a selected feature', function() {
var events = trackEvents(features[0], translate);
simulateEvent('pointermove', 10, 20); simulateEvent('pointermove', 10, 20);
simulateEvent('pointerdown', 10, 20); simulateEvent('pointerdown', 10, 20);
simulateEvent('pointerdrag', 50, -40); simulateEvent('pointerdrag', 50, -40);
@@ -107,9 +163,13 @@ describe('ol.interaction.Translate', function() {
var geometry = features[0].getGeometry(); var geometry = features[0].getGeometry();
expect(geometry).to.be.a(ol.geom.Point); expect(geometry).to.be.a(ol.geom.Point);
expect(geometry.getCoordinates()).to.eql([50, 40]); expect(geometry.getCoordinates()).to.eql([50, 40]);
validateEvents(events, [features[0]]);
}); });
it('does not move an unselected feature', function() { it('does not move an unselected feature', function() {
var events = trackEvents(features[0], translate);
simulateEvent('pointermove', 20, 30); simulateEvent('pointermove', 20, 30);
simulateEvent('pointerdown', 20, 30); simulateEvent('pointerdown', 20, 30);
simulateEvent('pointerdrag', 50, -40); simulateEvent('pointerdrag', 50, -40);
@@ -117,6 +177,30 @@ describe('ol.interaction.Translate', function() {
var geometry = features[1].getGeometry(); var geometry = features[1].getGeometry();
expect(geometry).to.be.a(ol.geom.Point); expect(geometry).to.be.a(ol.geom.Point);
expect(geometry.getCoordinates()).to.eql([20, -30]); expect(geometry.getCoordinates()).to.eql([20, -30]);
expect(events).to.be.empty();
});
});
describe('moving features, without features option', function() {
var translate;
beforeEach(function() {
translate = new ol.interaction.Translate();
map.addInteraction(translate);
});
it('moves only targeted feature', function() {
var events = trackEvents(features[0], translate);
simulateEvent('pointermove', 10, 20);
simulateEvent('pointerdown', 10, 20);
simulateEvent('pointerdrag', 50, -40);
simulateEvent('pointerup', 50, -40);
expect(features[0].getGeometry().getCoordinates()).to.eql([50, 40]);
expect(features[1].getGeometry().getCoordinates()).to.eql([20, -30]);
validateEvents(events, [features[0]]);
}); });
}); });
}); });