123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- import destroyObject from "../Core/destroyObject.js";
- function Empty3DTileContent(tileset, tile) {
- this._tileset = tileset;
- this._tile = tile;
- this.featurePropertiesDirty = false;
- }
- Object.defineProperties(Empty3DTileContent.prototype, {
- featuresLength: {
- get: function () {
- return 0;
- },
- },
- pointsLength: {
- get: function () {
- return 0;
- },
- },
- trianglesLength: {
- get: function () {
- return 0;
- },
- },
- geometryByteLength: {
- get: function () {
- return 0;
- },
- },
- texturesByteLength: {
- get: function () {
- return 0;
- },
- },
- batchTableByteLength: {
- get: function () {
- return 0;
- },
- },
- innerContents: {
- get: function () {
- return undefined;
- },
- },
- readyPromise: {
- get: function () {
- return undefined;
- },
- },
- tileset: {
- get: function () {
- return this._tileset;
- },
- },
- tile: {
- get: function () {
- return this._tile;
- },
- },
- url: {
- get: function () {
- return undefined;
- },
- },
- batchTable: {
- get: function () {
- return undefined;
- },
- },
- });
- Empty3DTileContent.prototype.hasProperty = function (batchId, name) {
- return false;
- };
- Empty3DTileContent.prototype.getFeature = function (batchId) {
- return undefined;
- };
- Empty3DTileContent.prototype.applyDebugSettings = function (enabled, color) {};
- Empty3DTileContent.prototype.applyStyle = function (style) {};
- Empty3DTileContent.prototype.update = function (tileset, frameState) {};
- Empty3DTileContent.prototype.isDestroyed = function () {
- return false;
- };
- Empty3DTileContent.prototype.destroy = function () {
- return destroyObject(this);
- };
- export default Empty3DTileContent;
|