We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
S2Layer
const layer = new S2Layer({ id: 'S2Layer', data: 'https://raw.githubusercontent.com/visgl/deck.gl-data/master/website/sf.s2cells.json', /* props from S2Layer class */ getS2Token: d => d.token, /* props inherited from GeoCellLayer class */ elevationScale: 1000, extruded: true, filled: true, getElevation: d => d.value, getFillColor: d => [d.value * 255, (1 - d.value) * 255, (1 - d.value) * 128], getLineColor: [0, 0, 0, 255], getLineWidth: 1, lineJointRounded: false, lineMiterLimit: 4, lineWidthMaxPixels: Number.MAX_SAFE_INTEGER, lineWidthMinPixels: 0, lineWidthScale: 1, lineWidthUnits: 'meters', material: true, stroked: true, wireframe: false, /* props inherited from Layer class */ autoHighlight: false, coordinateOrigin: [0, 0, 0], coordinateSystem: COORDINATE_SYSTEM.LNGLAT, highlightColor: [0, 0, 128, 128], modelMatrix: null, opacity: 1, pickable: true, visible: true, wrapLongitude: false, });
The current version of S2Layer supports all these data values, but the type is not yet there. It needs to be updated
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current version of S2Layer supports all these data values, but the type is not yet there. It needs to be updated
The text was updated successfully, but these errors were encountered: