File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export type DeckInternalLayerProps = {
2929export type LayerProps < LayerT extends Layer > = Partial < LayerT [ 'props' ] > & DeckInternalLayerProps ;
3030
3131/**
32- * A class that provides render any deck.gl layer inside the MapGl canvas / WebGL context.
32+ * A class that provides rendering any deck.gl layer inside the MapGl canvas / WebGL context.
3333 */
3434export class Deck2gisLayer < LayerT extends Layer > implements DeckCustomLayer {
3535 id : string ;
@@ -82,7 +82,7 @@ export class Deck2gisLayer<LayerT extends Layer> implements DeckCustomLayer {
8282 /**
8383 * @hidden
8484 * @internal
85- * MapGL call this method after add layer to map.
85+ * MapGL calls this method after adding a layer to a map.
8686 */
8787 public onAdd = ( ) => {
8888 if ( ! this . map && this . props . deck ) {
@@ -123,7 +123,7 @@ export class Deck2gisLayer<LayerT extends Layer> implements DeckCustomLayer {
123123 /**
124124 * @hidden
125125 * @internal
126- * MapGL call this method after remove layer from map.
126+ * MapGL calls this method after removing a layer from a map.
127127 */
128128 public onRemove = ( ) => {
129129 if ( this . deck ) {
@@ -147,7 +147,7 @@ export class Deck2gisLayer<LayerT extends Layer> implements DeckCustomLayer {
147147 /**
148148 * @hidden
149149 * @internal
150- * MapGL call this method each render map frame.
150+ * MapGL calls this method on each map frame rendering .
151151 */
152152 public render = ( ) => {
153153 if (
You can’t perform that action at this time.
0 commit comments