Uppercase for PBF constructor
This commit is contained in:
@@ -106,6 +106,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"module": "pbf",
|
"module": "pbf",
|
||||||
|
"name": "PBF",
|
||||||
"browserify": true
|
"browserify": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
goog.provide('ol.format.MVT');
|
goog.provide('ol.format.MVT');
|
||||||
|
|
||||||
goog.require('ol');
|
goog.require('ol');
|
||||||
goog.require('ol.ext.pbf');
|
goog.require('ol.ext.PBF');
|
||||||
goog.require('ol.ext.vectortile');
|
goog.require('ol.ext.vectortile');
|
||||||
goog.require('ol.format.Feature');
|
goog.require('ol.format.Feature');
|
||||||
goog.require('ol.format.FormatType');
|
goog.require('ol.format.FormatType');
|
||||||
@@ -149,7 +149,7 @@ ol.format.MVT.prototype.readRenderFeature_ = function(rawFeature, layer) {
|
|||||||
ol.format.MVT.prototype.readFeatures = function(source, opt_options) {
|
ol.format.MVT.prototype.readFeatures = function(source, opt_options) {
|
||||||
var layers = this.layers_;
|
var layers = this.layers_;
|
||||||
|
|
||||||
var pbf = new ol.ext.pbf(/** @type {ArrayBuffer} */ (source));
|
var pbf = new ol.ext.PBF(/** @type {ArrayBuffer} */ (source));
|
||||||
var tile = new ol.ext.vectortile.VectorTile(pbf);
|
var tile = new ol.ext.vectortile.VectorTile(pbf);
|
||||||
var features = [];
|
var features = [];
|
||||||
var featureClass = this.featureClass_;
|
var featureClass = this.featureClass_;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
goog.provide('ol.test.format.MVT');
|
goog.provide('ol.test.format.MVT');
|
||||||
|
|
||||||
goog.require('ol.Feature');
|
goog.require('ol.Feature');
|
||||||
goog.require('ol.ext.pbf');
|
goog.require('ol.ext.PBF');
|
||||||
goog.require('ol.ext.vectortile');
|
goog.require('ol.ext.vectortile');
|
||||||
goog.require('ol.format.MVT');
|
goog.require('ol.format.MVT');
|
||||||
goog.require('ol.geom.Point');
|
goog.require('ol.geom.Point');
|
||||||
@@ -40,7 +40,7 @@ where('ArrayBuffer.isView').describe('ol.format.MVT', function() {
|
|||||||
featureClass: ol.Feature,
|
featureClass: ol.Feature,
|
||||||
layers: ['poi_label']
|
layers: ['poi_label']
|
||||||
});
|
});
|
||||||
var pbf = new ol.ext.pbf(data);
|
var pbf = new ol.ext.PBF(data);
|
||||||
var tile = new ol.ext.vectortile.VectorTile(pbf);
|
var tile = new ol.ext.vectortile.VectorTile(pbf);
|
||||||
var geometry, rawGeometry;
|
var geometry, rawGeometry;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user