Metadata-Version: 2.1
Name: datasette-tiles
Version: 0.3
Summary: Mapping tile server for Datasette, serving tiles from MBTiles packages
Home-page: https://github.com/simonw/datasette-tiles
Author: Simon Willison
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/simonw/datasette-tiles/issues
Project-URL: CI, https://github.com/simonw/datasette-tiles/actions
Project-URL: Changelpog, https://github.com/simonw/datasette-tiles/releases
Description: # datasette-tiles
        
        [![PyPI](https://img.shields.io/pypi/v/datasette-tiles.svg)](https://pypi.org/project/datasette-tiles/)
        [![Changelog](https://img.shields.io/github/v/release/simonw/datasette-tiles?include_prereleases&label=changelog)](https://github.com/simonw/datasette-tiles/releases)
        [![Tests](https://github.com/simonw/datasette-tiles/workflows/Test/badge.svg)](https://github.com/simonw/datasette-tiles/actions?query=workflow%3ATest)
        [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/datasette-tiles/blob/main/LICENSE)
        
        Datasette plugin for serving MBTiles map tiles
        
        ## Installation
        
        Install this plugin in the same environment as Datasette.
        
            $ datasette install datasette-tiles
        
        ## Demo
        
        You can try this plugin out at https://datasette-tiles-demo.datasette.io/-/tiles
        
        ## Usage
        
        This plugin scans all database files connected to Datasette to see if any of them are valid MBTiles databases.
        
        It can then serve tiles from those databases at the following URL:
        
            /-/tiles/db-name/zoom/x/y.png
        
        An example map for each database demonstrating the configured minimum and maximum zoom for that database can be found at `/-/tiles/db-name` - this can also be accessed via the table and database action menus for that database.
        
        Visit `/-/tiles` for an index page of attached valid databases.
        
        You can install the [datasette-basemap](https://datasette.io/plugins/datasette-basemap) plugin to get a `basemap` default set of tiles, handling zoom levels 0 to 6 using OpenStreetMap.
        
        ## Development
        
        To set up this plugin locally, first checkout the code. Then create a new virtual environment:
        
            cd datasette-tiles
            python3 -mvenv venv
            source venv/bin/activate
        
        Or if you are using `pipenv`:
        
            pipenv shell
        
        Now install the dependencies and tests:
        
            pip install -e '.[test]'
        
        To run the tests:
        
            pytest
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: test
