File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
examples/demo-app/src/factories Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const CustomLoadDataModalFactory = (...deps) => {
29
29
// add more loading methods
30
30
const loadingMethods = [
31
31
defaultLoadingMethods . find ( lm => lm . id === 'upload' ) ,
32
- // defaultLoadingMethods.find(lm => lm.id === 'tileset'),
32
+ defaultLoadingMethods . find ( lm => lm . id === 'tileset' ) ,
33
33
additionalMethods . remote ,
34
34
defaultLoadingMethods . find ( lm => lm . id === 'storage' ) ,
35
35
additionalMethods . sample
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ import {default as S2GeometryLayer} from './s2-geometry-layer/s2-geometry-layer'
40
40
export { defaultElevation as s2DefaultElevation } from './s2-geometry-layer/s2-geometry-layer' ;
41
41
export { getS2Center } from './s2-geometry-layer/s2-utils' ;
42
42
export { default as AggregationLayer } from './aggregation-layer' ;
43
- // import {default as VectorTileLayer} from './vector-tile/vector-tile-layer';
43
+ import { default as VectorTileLayer } from './vector-tile/vector-tile-layer' ;
44
44
45
45
export { default as VectorTileIcon } from './vector-tile/vector-tile-icon' ;
46
46
export { default as VectorTileLayer } from './vector-tile/vector-tile-layer' ;
@@ -72,8 +72,8 @@ export const KeplerGlLayers = {
72
72
H3Layer,
73
73
ScenegraphLayer,
74
74
TripLayer,
75
- S2GeometryLayer
76
- // VectorTileLayer
75
+ S2GeometryLayer,
76
+ VectorTileLayer
77
77
} ;
78
78
79
79
export type LayerClassesType = typeof LayerClasses ;
@@ -90,8 +90,8 @@ export const LayerClasses = {
90
90
[ LAYER_TYPES . hexagonId ] : H3Layer ,
91
91
[ LAYER_TYPES [ '3D' ] ] : ScenegraphLayer ,
92
92
[ LAYER_TYPES . trip ] : TripLayer ,
93
- [ LAYER_TYPES . s2 ] : S2GeometryLayer
94
- // [LAYER_TYPES['vectorTile']]: VectorTileLayer
93
+ [ LAYER_TYPES . s2 ] : S2GeometryLayer ,
94
+ [ LAYER_TYPES [ 'vectorTile' ] ] : VectorTileLayer
95
95
} ;
96
96
97
97
export * from './mapbox-utils' ;
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ const DEFAULT_APPLICATION_CONFIG: Required<KeplerApplicationConfig<mapboxgl.Map>
73
73
table : null ,
74
74
75
75
useArrowProgressiveLoading : true ,
76
- showReleaseBanner : false
76
+ showReleaseBanner : true
77
77
} ;
78
78
79
79
const applicationConfig : Required < KeplerApplicationConfig < mapboxgl . Map > > =
You can’t perform that action at this time.
0 commit comments