UNPKG

maplibre-gl

Version:

BSD licensed community fork of mapbox-gl, a WebGL interactive maps library

22 lines (19 loc) 335 B
import type {AlphaImage} from '../util/image'; /** * The glyph's metrices */ export type GlyphMetrics = { width: number; height: number; left: number; top: number; advance: number; }; /** * A style glyph type */ export type StyleGlyph = { id: number; bitmap: AlphaImage; metrics: GlyphMetrics; };