Rename _ol_source_Vector_ to VectorSource

This commit is contained in:
Tim Schaub
2018-01-08 10:06:23 -07:00
parent 45c6e43b42
commit ca6ea355e6
94 changed files with 279 additions and 279 deletions

View File

@@ -3,7 +3,7 @@ import Point from '../../../src/ol/geom/Point.js';
import Map from '../../../src/ol/Map.js';
import View from '../../../src/ol/View.js';
import VectorLayer from '../../../src/ol/layer/Vector.js';
import _ol_source_Vector_ from '../../../src/ol/source/Vector.js';
import VectorSource from '../../../src/ol/source/Vector.js';
describe('ol.rendering.Map', function() {
@@ -11,7 +11,7 @@ describe('ol.rendering.Map', function() {
var map;
function createMap(renderer) {
var vectorLayer = new VectorLayer({
source: new _ol_source_Vector_({
source: new VectorSource({
features: [new Feature({
geometry: new Point([0, 0])
})]