@types/mapbox__vector-tile
TypeScript icon, indicating that this package has built-in type declarations

1.3.4 • Public • Published

Installation

npm install --save @types/mapbox__vector-tile

Summary

This package contains type definitions for @mapbox/vector-tile (https://github.com/mapbox/vector-tile-js).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mapbox__vector-tile.

index.d.ts

import Pbf = require("pbf");
import { Feature } from "geojson";
import Point = require("@mapbox/point-geometry");

export class VectorTile {
    constructor(pbf: Pbf);
    layers: { [_: string]: VectorTileLayer };
}

export class VectorTileFeature {
    static types: ["Unknown", "Point", "LineString", "Polygon"];
    extent: number;
    type: 0 | 1 | 2 | 3;
    id: number;
    properties: { [_: string]: string | number | boolean };
    loadGeometry(): Point[][];
    toGeoJSON(x: number, y: number, z: number): Feature;
    bbox?(): [number, number, number, number];
}

export class VectorTileLayer {
    constructor(pbf: Pbf);
    version?: number;
    name: string;
    extent: number;
    length: number;
    feature(featureIndex: number): VectorTileFeature;
}

Additional Details

Credits

These definitions were written by Mathieu Maes, and Harel Mazor.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/mapbox__vector-tile

Weekly Downloads

150,489

Version

1.3.4

License

MIT

Unpacked Size

4.64 kB

Total Files

5

Last publish

Collaborators

  • types