Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V3 for deck.gl v7 #48

Merged
merged 38 commits into from
Nov 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
9d8f4aa
version bump
danmarshall Nov 4, 2019
85a42a4
update math.gl to 3.0.0
danmarshall Nov 4, 2019
b18c16a
update deps
danmarshall Nov 4, 2019
bcae243
prepend with version number
danmarshall Nov 5, 2019
bcb13d7
individual tests
danmarshall Nov 5, 2019
3b9aa9c
added @luma.gl/webgl
danmarshall Nov 5, 2019
325dc80
add name to comment
danmarshall Nov 5, 2019
1bbde94
add dev deps
danmarshall Nov 5, 2019
302108d
add @luma.gl/core & @luma.gl/webgl-state-tracker
danmarshall Nov 5, 2019
a87dd0a
rename with @ symbol
danmarshall Nov 5, 2019
370abb8
add @deck.gl/core and aggregation-layers
danmarshall Nov 5, 2019
ea6cfca
change inputs
danmarshall Nov 5, 2019
c8d8b0d
imports
danmarshall Nov 5, 2019
11f4bb1
added @deck.gl/extensions
danmarshall Nov 5, 2019
0605117
add layers & geo-layers
danmarshall Nov 5, 2019
1e133ac
add google-maps
danmarshall Nov 5, 2019
807937c
added json
danmarshall Nov 5, 2019
acc9396
added mapbox
danmarshall Nov 5, 2019
0aaee85
added mesh-layers
danmarshall Nov 5, 2019
b842c20
revive DeckProps
danmarshall Nov 5, 2019
92f40fc
added react
danmarshall Nov 5, 2019
7426b70
added Effect
danmarshall Nov 5, 2019
d2b355f
added deck.gl
danmarshall Nov 5, 2019
93ea500
fix imports
danmarshall Nov 5, 2019
b2f1296
install all folders
danmarshall Nov 5, 2019
b17d3df
fix cmd
danmarshall Nov 5, 2019
772e051
fix cmd
danmarshall Nov 5, 2019
864fc49
reinstate LayerProps & Color
danmarshall Nov 5, 2019
705311a
reinstate Component props
danmarshall Nov 5, 2019
bbc3560
reinstate props
danmarshall Nov 5, 2019
7711fdf
IconLayer constructor
danmarshall Nov 5, 2019
efa043b
addec viewState & props
danmarshall Nov 5, 2019
8c32dad
add interfaces
danmarshall Nov 5, 2019
4c0b216
add LineLayerProps
danmarshall Nov 5, 2019
9c6a4c4
autoformat
danmarshall Nov 5, 2019
0956096
delete notes
danmarshall Nov 5, 2019
2b46269
add polygonlayer props
danmarshall Nov 5, 2019
eacd6c0
add OrbitViewState
danmarshall Nov 5, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ These will automatically appear in your projects `node_modules/@types` folder, t
|-----------------|------------------------|
| 5.x.x | 1.x.x |
| 6.x.x | 2.x.x |
| 7.x.x | 3.x.x |
67 changes: 45 additions & 22 deletions deck.gl/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,68 +1,91 @@
//typings for deck.gl v7.3.3
/// <reference path="../deck.gl__core/index.d.ts" />
/// <reference path="../deck.gl__layers/index.d.ts" />
/// <reference path="../deck.gl__aggregation-layers/index.d.ts" />
/// <reference path="../deck.gl__geo-layers/index.d.ts" />
/// <reference path="../deck.gl__mesh-layers/index.d.ts" />
/// <reference path="../deck.gl__react/index.d.ts" />

declare module 'deck.gl' {
export { experimental } from '@deck.gl/core';

export {
// CONSTANTS
COORDINATE_SYSTEM,
// Main class
Deck,
// Base Layers
Layer,
CompositeLayer,
// Views
View,
MapView,
FirstPersonView,
ThirdPersonView,
OrbitView,
PerspectiveView,
OrthographicView,
// Viewports
Viewport,
WebMercatorViewport,
// Controllers
Controller,
MapController,
// For custom layers
AttributeManager,
// Shader modules
project,
project64,
lighting,
// Internal classes
LayerManager,
// Logging
DeckRenderer,
log,
// Controllers
_OrbitController,
_FirstPersonController,
// Transition bindings
TRANSITION_EVENTS,
LinearInterpolator,
FlyToInterpolator,
// Effects
_EffectManager,
_Effect,
_ReflectionEffect
Effect,
LightingEffect,
PostProcessEffect,
AmbientLight,
PointLight,
DirectionalLight,
LayerExtension,
fp64LowPart,
createIterable
} from '@deck.gl/core';
export {
ArcLayer,
BitmapLayer,
IconLayer,
LineLayer,
PointCloudLayer,
ScatterplotLayer,
ScreenGridLayer,
GridLayer,
GridCellLayer,
HexagonLayer,
HexagonCellLayer,
ColumnLayer,
PathLayer,
PolygonLayer,
SolidPolygonLayer,
GeoJsonLayer,
TextLayer
} from '@deck.gl/layers';
export { default, DeckGL } from '@deck.gl/react';
export {
ScreenGridLayer,
CPUGridLayer,
HexagonLayer,
ContourLayer,
GridLayer,
GPUGridLayer,
AGGREGATION_OPERATION,
HeatmapLayer
} from '@deck.gl/aggregation-layers';
export {
GreatCircleLayer,
S2Layer,
H3ClusterLayer,
H3HexagonLayer,
TileLayer,
TripsLayer,
Tile3DLayer
} from '@deck.gl/geo-layers';
export {
SimpleMeshLayer,
ScenegraphLayer
} from '@deck.gl/mesh-layers';
export {
default,
DeckGL
} from '@deck.gl/react';
}
Loading