mirror of
https://github.com/openglobus/openglobus.git
synced 2025-12-08 19:25:27 +00:00
v0.27.11
This commit is contained in:
parent
4c9dfd9460
commit
f98819d36f
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openglobus/og",
|
||||
"version": "0.27.10",
|
||||
"version": "0.27.11",
|
||||
"description": "[openglobus](https://www.openglobus.org/) is a javascript/typescript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers, and 3D objects. It uses the WebGL technology, open source, and completely free.",
|
||||
"main": "lib/og.es.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@ -51,6 +51,7 @@ import {LonLat} from './LonLat';
|
||||
import {RenderNode} from './scene/RenderNode';
|
||||
import {Planet} from './scene/Planet';
|
||||
import {Popup} from './Popup';
|
||||
import {Loader, type IResponse} from './utils/Loader';
|
||||
|
||||
import {
|
||||
EarthQuadTreeStrategy,
|
||||
@ -86,9 +87,9 @@ import {
|
||||
} from './terrain/index';
|
||||
|
||||
import {MoveAxisEntity} from "./control/geoObjectEditor/MoveAxisEntity";
|
||||
import { Gltf } from './utils/gltf/gltfParser';
|
||||
import { Easing } from './utils/easing';
|
||||
import type { EasingFunction } from './utils/easing';
|
||||
import {Gltf} from './utils/gltf/gltfParser';
|
||||
import {Easing} from './utils/easing';
|
||||
import type {EasingFunction} from './utils/easing';
|
||||
|
||||
export {
|
||||
bv,
|
||||
@ -149,4 +150,6 @@ export {
|
||||
Object3d,
|
||||
Gltf,
|
||||
MoveAxisEntity,
|
||||
Loader,
|
||||
IResponse
|
||||
};
|
||||
@ -1,13 +1,18 @@
|
||||
import { Framebuffer } from "./Framebuffer";
|
||||
import { Handler } from "./Handler";
|
||||
import { Multisample } from "./Multisample";
|
||||
import { Program } from "./Program";
|
||||
import { types } from "./types";
|
||||
import {Framebuffer} from "./Framebuffer";
|
||||
import {Handler} from "./Handler";
|
||||
import type {WebGLContextExt, WebGLBufferExt, WebGLTextureExt, ImageSource} from "./Handler";
|
||||
import {Multisample} from "./Multisample";
|
||||
import {Program} from "./Program";
|
||||
import {types} from "./types";
|
||||
|
||||
export {
|
||||
Framebuffer,
|
||||
Handler,
|
||||
Multisample,
|
||||
types,
|
||||
Program
|
||||
Program,
|
||||
WebGLContextExt,
|
||||
WebGLBufferExt,
|
||||
WebGLTextureExt,
|
||||
ImageSource
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user