├── .gitignore ├── README.md ├── _urllist.txt ├── bundlemaker.py ├── bundlemaker2.py ├── conf.xml.柳州.压缩 ├── conf.xml.柳州.散装 ├── marstiles.py ├── qrcode └── weixin.png ├── run.bat ├── screenshot ├── S01.png ├── S02.png └── S03.png ├── task.json ├── tilemaker.py ├── tilemaker_baidu.py └── tilemaker_mars.py /.gitignore: -------------------------------------------------------------------------------- 1 | /out 2 | /out.old 3 | /del 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/README.md -------------------------------------------------------------------------------- /_urllist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/_urllist.txt -------------------------------------------------------------------------------- /bundlemaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/bundlemaker.py -------------------------------------------------------------------------------- /bundlemaker2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/bundlemaker2.py -------------------------------------------------------------------------------- /conf.xml.柳州.压缩: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/conf.xml.柳州.压缩 -------------------------------------------------------------------------------- /conf.xml.柳州.散装: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/conf.xml.柳州.散装 -------------------------------------------------------------------------------- /marstiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/marstiles.py -------------------------------------------------------------------------------- /qrcode/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/qrcode/weixin.png -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | python MBTiles.PY -------------------------------------------------------------------------------- /screenshot/S01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/screenshot/S01.png -------------------------------------------------------------------------------- /screenshot/S02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/screenshot/S02.png -------------------------------------------------------------------------------- /screenshot/S03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/screenshot/S03.png -------------------------------------------------------------------------------- /task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/task.json -------------------------------------------------------------------------------- /tilemaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/tilemaker.py -------------------------------------------------------------------------------- /tilemaker_baidu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/tilemaker_baidu.py -------------------------------------------------------------------------------- /tilemaker_mars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adodo1/tilemaker/HEAD/tilemaker_mars.py --------------------------------------------------------------------------------