Refactor ol.geom.Point
This commit is contained in:
+13
-17
@@ -9,27 +9,21 @@ goog.require('ol.geom.Geometry');
|
|||||||
/**
|
/**
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends {ol.geom.Geometry}
|
* @extends {ol.geom.Geometry}
|
||||||
* @param {ol.geom.RawPoint} coordinate Coordinate.
|
* @param {ol.geom.RawPoint} coordinates Coordinates.
|
||||||
|
* @param {ol.geom.Layout=} opt_layout Layout.
|
||||||
*/
|
*/
|
||||||
ol.geom.Point = function(coordinate) {
|
ol.geom.Point = function(coordinates, opt_layout) {
|
||||||
|
|
||||||
goog.base(this);
|
goog.base(this);
|
||||||
|
this.setCoordinates(coordinates, opt_layout);
|
||||||
/**
|
|
||||||
* @private
|
|
||||||
* @type {ol.geom.RawPoint}
|
|
||||||
*/
|
|
||||||
this.coordinate_ = coordinate;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
goog.inherits(ol.geom.Point, ol.geom.Geometry);
|
goog.inherits(ol.geom.Point, ol.geom.Geometry);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return {ol.geom.RawPoint} Coordinate.
|
* @return {ol.geom.RawPoint} Coordinates.
|
||||||
*/
|
*/
|
||||||
ol.geom.Point.prototype.getCoordinate = function() {
|
ol.geom.Point.prototype.getCoordinates = function() {
|
||||||
return this.coordinate_;
|
return this.flatCoordinates.slice();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -39,7 +33,7 @@ ol.geom.Point.prototype.getCoordinate = function() {
|
|||||||
ol.geom.Point.prototype.getExtent = function(opt_extent) {
|
ol.geom.Point.prototype.getExtent = function(opt_extent) {
|
||||||
if (this.extentRevision != this.revision) {
|
if (this.extentRevision != this.revision) {
|
||||||
this.extent = ol.extent.createOrUpdateFromCoordinate(
|
this.extent = ol.extent.createOrUpdateFromCoordinate(
|
||||||
this.coordinate_, this.extent);
|
this.flatCoordinates, this.extent);
|
||||||
this.extentRevision = this.revision;
|
this.extentRevision = this.revision;
|
||||||
}
|
}
|
||||||
goog.asserts.assert(goog.isDef(this.extent));
|
goog.asserts.assert(goog.isDef(this.extent));
|
||||||
@@ -56,9 +50,11 @@ ol.geom.Point.prototype.getType = function() {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {ol.geom.RawPoint} coordinate Coordinate.
|
* @param {ol.geom.RawPoint} coordinates Coordinates.
|
||||||
|
* @param {ol.geom.Layout=} opt_layout Layout.
|
||||||
*/
|
*/
|
||||||
ol.geom.Point.prototype.setCoordinate = function(coordinate) {
|
ol.geom.Point.prototype.setCoordinates = function(coordinates, opt_layout) {
|
||||||
this.coordinate_ = coordinate;
|
this.setLayout(opt_layout, coordinates, 0);
|
||||||
|
this.flatCoordinates = coordinates;
|
||||||
this.dispatchChangeEvent();
|
this.dispatchChangeEvent();
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ describe('ol.format.GeoJSON', function() {
|
|||||||
expect(feature).to.be.an(ol.Feature);
|
expect(feature).to.be.an(ol.Feature);
|
||||||
var geometry = feature.getGeometry();
|
var geometry = feature.getGeometry();
|
||||||
expect(geometry).to.be.an(ol.geom.Point);
|
expect(geometry).to.be.an(ol.geom.Point);
|
||||||
expect(geometry.getCoordinate()).to.eql([102.0, 0.5]);
|
expect(geometry.getCoordinates()).to.eql([102.0, 0.5]);
|
||||||
expect(feature.get('prop0')).to.be('value0');
|
expect(feature.get('prop0')).to.be('value0');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,97 @@
|
|||||||
|
goog.provide('ol.test.geom.Point');
|
||||||
|
|
||||||
|
|
||||||
|
describe('ol.geom.Point', function() {
|
||||||
|
|
||||||
|
describe('construct with 2D coordinates', function() {
|
||||||
|
|
||||||
|
var point;
|
||||||
|
beforeEach(function() {
|
||||||
|
point = new ol.geom.Point([1, 2]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected layout', function() {
|
||||||
|
expect(point.getLayout()).to.be(ol.geom.Layout.XY);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected coordinates', function() {
|
||||||
|
expect(point.getCoordinates()).to.eql([1, 2]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected extent', function() {
|
||||||
|
expect(point.getExtent()).to.eql([1, 2, 1, 2]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected flat coordinates', function() {
|
||||||
|
expect(point.getFlatCoordinates()).to.eql([1, 2]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has stride the expected stride', function() {
|
||||||
|
expect(point.getStride()).to.be(2);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('construct with 3D coordinates and layout XYM', function() {
|
||||||
|
|
||||||
|
var point;
|
||||||
|
beforeEach(function() {
|
||||||
|
point = new ol.geom.Point([1, 2, 3], ol.geom.Layout.XYM);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected layout', function() {
|
||||||
|
expect(point.getLayout()).to.be(ol.geom.Layout.XYM);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected coordinates', function() {
|
||||||
|
expect(point.getCoordinates()).to.eql([1, 2, 3]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected extent', function() {
|
||||||
|
expect(point.getExtent()).to.eql([1, 2, 1, 2]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected flat coordinates', function() {
|
||||||
|
expect(point.getFlatCoordinates()).to.eql([1, 2, 3]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected stride', function() {
|
||||||
|
expect(point.getStride()).to.be(3);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('construct with 4D coordinates', function() {
|
||||||
|
|
||||||
|
var point;
|
||||||
|
beforeEach(function() {
|
||||||
|
point = new ol.geom.Point([1, 2, 3, 4]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected layout', function() {
|
||||||
|
expect(point.getLayout()).to.be(ol.geom.Layout.XYZM);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected coordinates', function() {
|
||||||
|
expect(point.getCoordinates()).to.eql([1, 2, 3, 4]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected extent', function() {
|
||||||
|
expect(point.getExtent()).to.eql([1, 2, 1, 2]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected flat coordinates', function() {
|
||||||
|
expect(point.getFlatCoordinates()).to.eql([1, 2, 3, 4]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('has the expected stride', function() {
|
||||||
|
expect(point.getStride()).to.be(4);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
goog.require('ol.extent');
|
||||||
|
goog.require('ol.geom.Point');
|
||||||
@@ -128,7 +128,7 @@ describe('ol.source.Vector', function() {
|
|||||||
it('fires a change event', function() {
|
it('fires a change event', function() {
|
||||||
var listener = sinon.spy();
|
var listener = sinon.spy();
|
||||||
goog.events.listen(vectorSource, 'change', listener);
|
goog.events.listen(vectorSource, 'change', listener);
|
||||||
features[0].getGeometry().setCoordinate([100, 100]);
|
features[0].getGeometry().setCoordinates([100, 100]);
|
||||||
expect(listener).to.be.called();
|
expect(listener).to.be.called();
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -136,10 +136,10 @@ describe('ol.source.Vector', function() {
|
|||||||
it('keeps the R-Tree index up to date', function() {
|
it('keeps the R-Tree index up to date', function() {
|
||||||
expect(vectorSource.getAllFeaturesInExtent([0, 0, 1, 1])).
|
expect(vectorSource.getAllFeaturesInExtent([0, 0, 1, 1])).
|
||||||
to.have.length(10);
|
to.have.length(10);
|
||||||
features[0].getGeometry().setCoordinate([100, 100]);
|
features[0].getGeometry().setCoordinates([100, 100]);
|
||||||
expect(vectorSource.getAllFeaturesInExtent([0, 0, 1, 1])).
|
expect(vectorSource.getAllFeaturesInExtent([0, 0, 1, 1])).
|
||||||
to.have.length(9);
|
to.have.length(9);
|
||||||
features[0].getGeometry().setCoordinate([0.5, 0.5]);
|
features[0].getGeometry().setCoordinates([0.5, 0.5]);
|
||||||
expect(vectorSource.getAllFeaturesInExtent([0, 0, 1, 1])).
|
expect(vectorSource.getAllFeaturesInExtent([0, 0, 1, 1])).
|
||||||
to.have.length(10);
|
to.have.length(10);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user