Remove unused ol.tilecoord.createFromString function

This commit is contained in:
Frederic Junod
2016-09-15 16:33:58 +02:00
parent 932269c8b6
commit 000207016f
2 changed files with 0 additions and 27 deletions
-10
View File
@@ -15,16 +15,6 @@ describe('ol.TileCoord', function() {
});
});
describe('create from string', function() {
it('sets x y z properties as expected', function() {
var str = '1/2/3';
var tileCoord = ol.tilecoord.createFromString(str);
expect(tileCoord[0]).to.eql(1);
expect(tileCoord[1]).to.eql(2);
expect(tileCoord[2]).to.eql(3);
});
});
describe('call quadKey', function() {
it('returns expected string', function() {
var tileCoord = [3, 3, 5];