├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.json ├── docs ├── index.html ├── screenshot.jpg └── screenshot@2x.jpg ├── package.json ├── rollup.config.js ├── src ├── calc.js ├── grid.d.ts ├── grid.js └── index.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 1.0.0 4 | 5 | - initial release 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/babel.config.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/docs/screenshot.jpg -------------------------------------------------------------------------------- /docs/screenshot@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/docs/screenshot@2x.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/src/calc.js -------------------------------------------------------------------------------- /src/grid.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/src/grid.d.ts -------------------------------------------------------------------------------- /src/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/src/grid.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export * from './grid'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maplibre-grid/HEAD/tsconfig.json --------------------------------------------------------------------------------