Add ol.geom.SimpleGeometry#getLastCoordinate

This commit is contained in:
Tom Payne
2014-02-28 15:36:18 +01:00
parent 7ca47e3b2a
commit a1e8ff0a8f
3 changed files with 17 additions and 0 deletions

View File

@@ -184,6 +184,14 @@ describe('ol.geom.LineString', function() {
});
describe('#getLastCoordinate', function() {
it('returns the expected result', function() {
expect(lineString.getLastCoordinate()).to.eql([7, 5]);
});
});
describe('#getSimplifiedGeometry', function() {
it('returns the expectedResult', function() {