Remove unused createFromQuadKey function

This commit is contained in:
Andreas Hocevar
2015-06-18 09:42:00 +02:00
parent 84e051d19b
commit 18aa9b5091
2 changed files with 0 additions and 36 deletions
-9
View File
@@ -11,15 +11,6 @@ describe('ol.TileCoord', function() {
});
});
describe('create from quad key', function() {
it('sets x y z properties as expected', function() {
var tileCoord = ol.tilecoord.createFromQuadKey('213');
expect(tileCoord[0]).to.eql(3);
expect(tileCoord[1]).to.eql(3);
expect(tileCoord[2]).to.eql(5);
});
});
describe('create from string', function() {
it('sets x y z properties as expected', function() {
var str = '1/2/3';