@ngageoint/geopackage
Version:
GeoPackage JavaScript Library
23 lines • 684 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomFeaturesTile = void 0;
/**
* CustomFeaturesTile module.
* @module tiles/features/custom
*/
/**
* Custom Feature Tile
* @constructor
*/
var CustomFeaturesTile = /** @class */ (function () {
function CustomFeaturesTile() {
this.compressFormat = 'png';
this.tileBorderStrokeWidth = 2;
this.tileBorderColor = 'rgba(0, 0, 0, 1.0)';
this.tileFillColor = 'rgba(0, 0, 0, 0.0625)';
this.drawUnindexedTiles = true;
}
return CustomFeaturesTile;
}());
exports.CustomFeaturesTile = CustomFeaturesTile;
//# sourceMappingURL=customFeaturesTile.js.map