37 lines
942 B
JavaScript
37 lines
942 B
JavaScript
goog.provide('ol.interaction.Constraints');
|
|
|
|
goog.require('ol.interaction.CenterConstraintType');
|
|
goog.require('ol.interaction.ResolutionConstraintType');
|
|
goog.require('ol.interaction.RotationConstraintType');
|
|
|
|
|
|
|
|
/**
|
|
* @constructor
|
|
* @param {ol.interaction.CenterConstraintType} centerConstraint
|
|
* Center constraint.
|
|
* @param {ol.interaction.ResolutionConstraintType} resolutionConstraint
|
|
* Resolution constraint.
|
|
* @param {ol.interaction.RotationConstraintType} rotationConstraint
|
|
* Rotation constraint.
|
|
*/
|
|
ol.interaction.Constraints =
|
|
function(centerConstraint, resolutionConstraint, rotationConstraint) {
|
|
|
|
/**
|
|
* @type {ol.interaction.CenterConstraintType}
|
|
*/
|
|
this.center = centerConstraint;
|
|
|
|
/**
|
|
* @type {ol.interaction.ResolutionConstraintType}
|
|
*/
|
|
this.resolution = resolutionConstraint;
|
|
|
|
/**
|
|
* @type {ol.interaction.RotationConstraintType}
|
|
*/
|
|
this.rotation = rotationConstraint;
|
|
|
|
};
|