@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
12 lines (11 loc) • 418 B
JavaScript
;
import { PolyThirdPartyMapboxController } from "./thirdParty/Mapbox";
import { PolyMarkerTrackingController } from "./thirdParty/MarkerTracking";
export class PolyThirdPartyController {
markerTracking() {
return this._markerTracking = this._markerTracking || new PolyMarkerTrackingController();
}
mapbox() {
return this._mapbox = this._mapbox || new PolyThirdPartyMapboxController();
}
}