Remove projection param in ol.VectorTile constructor

This commit is contained in:
Frederic Junod
2016-10-19 10:20:28 +02:00
parent e8bc38b6a9
commit 88cebbf6c1

View File

@@ -71,8 +71,7 @@ describe('ol.featureloader', function() {
var tile;
beforeEach(function() {
tile = new ol.VectorTile([0, 0, 0], undefined, undefined, undefined,
undefined, ol.proj.get('EPSG:3857'));
tile = new ol.VectorTile([0, 0, 0]);
});
it('sets features on the tile', function(done) {