@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
16 lines (14 loc) • 535 B
text/typescript
import {PolyThirdPartyMapboxController} from './thirdParty/Mapbox';
import {PolyMarkerTrackingController} from './thirdParty/MarkerTracking';
export class PolyThirdPartyController {
//
private _markerTracking: PolyMarkerTrackingController | undefined;
markerTracking() {
return (this._markerTracking = this._markerTracking || new PolyMarkerTrackingController());
}
//
private _mapbox: PolyThirdPartyMapboxController | undefined;
mapbox() {
return (this._mapbox = this._mapbox || new PolyThirdPartyMapboxController());
}
}