3d-tiles-renderer
Version:
https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification
21 lines (13 loc) • 468 B
TypeScript
import { MVTGlyphs } from './MVTGlyphs.js';
export interface MVTIconGlyphsOptions {
getKind?: ( layer: string, properties: Record<string, unknown> ) => string | null;
fallback?: string | null;
size?: number;
glyphSize?: number;
slotCount?: number;
}
export class MVTIconGlyphs extends MVTGlyphs {
getKind: ( layer: string, properties: Record<string, unknown> ) => string | null;
fallback: string | null;
constructor( options?: MVTIconGlyphsOptions );
}