Metadata-Version: 2.1
Name: VectorTileGenerator
Version: 0.0.1
Summary: Automatically generate a list of all possible tiles
Home-page: https://github.com/mkeller3/ZXY-Vector-Tile-Generator-Machine/
Author: Michael Keller
Author-email: michaelkeller03@gmail.com
License: GNU General Public License v3.0
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: feedparser
Requires-Dist: html2text

# VectorTileGenerator

A python package to automatically generate a list of all possible tiles options between two zoom levels and a bounding box.

## Install
`pip install VectorTileGenerator`

## How to use
```
from tileGenerator import generator

tileGeneration = generator.GenerateTiles(1, 5, [-118, 34, -84, 50])

# Demo of generating tiles
print(tileGeneration.generate())
```

