Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/deyihu/maptalks-MBTileLayer

A maptalks.js plugin to load tilesets in .mbtiles format. https://deyihu.github.io/src/maptalks-MBTileLayer/examples/
https://github.com/deyihu/maptalks-MBTileLayer

Last synced: 3 months ago
JSON representation

A maptalks.js plugin to load tilesets in .mbtiles format. https://deyihu.github.io/src/maptalks-MBTileLayer/examples/

Awesome Lists containing this project

README

        

maptalks Loads .mbtiles tilesets.

inspired by https://gitlab.com/IvanSanchez/Leaflet.TileLayer.MBTiles

![](gallery.png)

[demo](https://deyihu.github.io/src/maptalks-MBTileLayer/examples/)


how to use?

var baseLayer = new maptalks.MBTileLayer('base',{
dbUrl:'./countries-raster.mbtiles',
attribution: '© MapBox Maps'
});


var map = new maptalks.Map('map', {
center: [0,0],
zoom: 0,
baseLayer : baseLayer
});