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

@@ -4,7 +4,7 @@ import GeoJSON from '../src/ol/format/GeoJSON.js';
import TileLayer from '../src/ol/layer/Tile.js';
import VectorLayer from '../src/ol/layer/Vector.js';
import _ol_source_OSM_ from '../src/ol/source/OSM.js';
import _ol_source_Vector_ from '../src/ol/source/Vector.js';
import VectorSource from '../src/ol/source/Vector.js';
import _ol_style_Circle_ from '../src/ol/style/Circle.js';
import _ol_style_Fill_ from '../src/ol/style/Fill.js';
import _ol_style_Stroke_ from '../src/ol/style/Stroke.js';
@@ -141,7 +141,7 @@ function polygonStyleFunction(feature, resolution) {
}
var vectorPolygons = new VectorLayer({
source: new _ol_source_Vector_({
source: new VectorSource({
url: 'data/geojson/polygon-samples.geojson',
format: new GeoJSON()
}),
@@ -161,7 +161,7 @@ function lineStyleFunction(feature, resolution) {
}
var vectorLines = new VectorLayer({
source: new _ol_source_Vector_({
source: new VectorSource({
url: 'data/geojson/line-samples.geojson',
format: new GeoJSON()
}),
@@ -182,7 +182,7 @@ function pointStyleFunction(feature, resolution) {
}
var vectorPoints = new VectorLayer({
source: new _ol_source_Vector_({
source: new VectorSource({
url: 'data/geojson/point-samples.geojson',
format: new GeoJSON()
}),