(
MapClass: {new (options: any): MapInstance},
props: MapboxProps,
container: HTMLDivElement
)
| 204 | static savedMaps: Mapbox[] = []; |
| 205 | |
| 206 | constructor( |
| 207 | MapClass: {new (options: any): MapInstance}, |
| 208 | props: MapboxProps, |
| 209 | container: HTMLDivElement |
| 210 | ) { |
| 211 | this._MapClass = MapClass; |
| 212 | this.props = props; |
| 213 | this._initialize(container); |
| 214 | } |
| 215 | |
| 216 | get map(): MapInstance { |
| 217 | return this._map; |
nothing calls this directly
no test coverage detected