leaflet-tilelayer-mbtiles-ts
TypeScript icon, indicating that this package has built-in type declarations

1.6.0 • Public • Published

🌍 Leaflet.TileLayer.MBTiles

Circle CI NPM downloads NPM version Codacy Badge contributions welcome

A LeafletJS plugin to load tilesets in .mbtiles format.

This is a rewritten version of the typescript version based on this fork This version adds OS platform detection to make it compatible with iOS and Android, since fetch didn't support File URI Schema see..

Installing

Via NPM:

 npm install --save leaflet-tilelayer-mbtiles-ts

Via Yarn:

 yarn add leaflet-tilelayer-mbtiles-ts

Requirements

Exemple

The following exemple loads a ~9.6MB .mbtiles file with the "countries" style from the good ol' Tilemill:

See also ionic5-leaflet-mbtiles for a Ionic sample app.

Using the plugin

    // Using the constructor...
    let mbtiles = new L.TileLayer.MBTiles('http://server/something/cool-stuff.mbtiles', options);
    
    // ... or use the factory
    mbtiles = L.tileLayer.mbtiles('http://server/something/cool-stuff.mbtiles', options);

    // Possible events
    mbtiles.on('databaseloaded', (ev) => {
        console.info('MBTiles DB loaded', ev);
    });

    mbtiles.on('databaseerror', (ev) => {
        console.info('MBTiles DB error', ev);
    });
    
    mbtiles.addTo(map);

Importing

With ES6 imports

    import { MBTiles, mbtiles } from 'leaflet-tilelayer-mbtiles-ts';

    // Using the constructor...
    let mbtiles = new MBTiles('./assets/mysuperfile.mbtiles', options);
    
    // ... or use the factory
    mbtiles = mbtiles('./assets/mysuperfile.mbtiles', options);
    
    mbtiles.addTo(map);

Global

    import 'leaflet-tilelayer-mbtiles-ts';

    // Using the constructor...
    let mbtiles = new L.TileLayer.MBTiles('./assets/mysuperfile.mbtiles', options);
    
    // ... or use the factory
    mbtiles = L.tilelayer.mbtiles('./assets/mysuperfile.mbtiles', options);
    
    mbtiles.addTo(map);

Parameters

MBTiles extends the TileLayer.Initialise with the same options.

Extra metadata handling

Some .mbtiles have metadata rows which is not in the specification .mbtiles format. This plugin will handle the following optional metadata rows, if they exist:

  • minzoom (as the layer's minzoom option).
  • maxzoom (as the layer's maxzoom option).
  • attribution (as the layer's attribution option).

Due to the database being opened asynchronously, and the fact that layer options have to be given when the layer is instantiated, metadata handling does not work very well. Consider handling the metadata manually and setting Leaflet layer options accordingly.

License

MIT

Package Sidebar

Install

npm i leaflet-tilelayer-mbtiles-ts

Weekly Downloads

81

Version

1.6.0

License

MIT

Unpacked Size

25.9 kB

Total Files

12

Last publish

Collaborators

  • 0nza1101