├── .gitignore ├── LICENSE ├── README.md ├── README_CN.md ├── TODO.md ├── app.py ├── gevent_flask.py ├── pyMap.py ├── requirements.txt ├── start.bat ├── static ├── .eslintrc.json ├── app.css ├── app.js ├── coordtransform.js ├── locale │ └── zh-cn.js └── package.json └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/README_CN.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/TODO.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/app.py -------------------------------------------------------------------------------- /gevent_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/gevent_flask.py -------------------------------------------------------------------------------- /pyMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/pyMap.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | start python gevent_flask.py 3 | exit -------------------------------------------------------------------------------- /static/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/static/.eslintrc.json -------------------------------------------------------------------------------- /static/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/static/app.css -------------------------------------------------------------------------------- /static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/static/app.js -------------------------------------------------------------------------------- /static/coordtransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/static/coordtransform.js -------------------------------------------------------------------------------- /static/locale/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/static/locale/zh-cn.js -------------------------------------------------------------------------------- /static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/static/package.json -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonxiang/pyMap_webapp/HEAD/templates/index.html --------------------------------------------------------------------------------