Interface VectorTileFeatureLike
interface VectorTileFeatureLike {
extent: number;
id: number | undefined;
properties: Record<string, number | string | boolean>;
type: 0 | 1 | 2 | 3;
loadGeometry(): Point[][];
}
extent: number;
id: number | undefined;
properties: Record<string, number | string | boolean>;
type: 0 | 1 | 2 | 3;
loadGeometry(): Point[][];
}
Index
Properties
Methods
Was this helpful?