├── .gitignore ├── LICENSE.txt ├── README.md ├── data ├── ne_10m_admin_0_countries.README.html ├── ne_10m_admin_0_countries.VERSION.txt ├── ne_10m_admin_0_countries.cpg ├── ne_10m_admin_0_countries.dbf ├── ne_10m_admin_0_countries.prj ├── ne_10m_admin_0_countries.shp ├── ne_10m_admin_0_countries.shx ├── ne_10m_lakes.README.html ├── ne_10m_lakes.VERSION.txt ├── ne_10m_lakes.cpg ├── ne_10m_lakes.dbf ├── ne_10m_lakes.prj ├── ne_10m_lakes.shp └── ne_10m_lakes.shx ├── handler.py ├── map.map ├── ol.html └── serverless.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/README.md -------------------------------------------------------------------------------- /data/ne_10m_admin_0_countries.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/data/ne_10m_admin_0_countries.README.html -------------------------------------------------------------------------------- /data/ne_10m_admin_0_countries.VERSION.txt: -------------------------------------------------------------------------------- 1 | 4.1.0 2 | -------------------------------------------------------------------------------- /data/ne_10m_admin_0_countries.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/ne_10m_admin_0_countries.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/data/ne_10m_admin_0_countries.dbf -------------------------------------------------------------------------------- /data/ne_10m_admin_0_countries.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/data/ne_10m_admin_0_countries.prj -------------------------------------------------------------------------------- /data/ne_10m_admin_0_countries.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/data/ne_10m_admin_0_countries.shp -------------------------------------------------------------------------------- /data/ne_10m_admin_0_countries.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/data/ne_10m_admin_0_countries.shx -------------------------------------------------------------------------------- /data/ne_10m_lakes.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/data/ne_10m_lakes.README.html -------------------------------------------------------------------------------- /data/ne_10m_lakes.VERSION.txt: -------------------------------------------------------------------------------- 1 | 4.1.0 2 | -------------------------------------------------------------------------------- /data/ne_10m_lakes.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/ne_10m_lakes.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/data/ne_10m_lakes.dbf -------------------------------------------------------------------------------- /data/ne_10m_lakes.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/data/ne_10m_lakes.prj -------------------------------------------------------------------------------- /data/ne_10m_lakes.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/data/ne_10m_lakes.shp -------------------------------------------------------------------------------- /data/ne_10m_lakes.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/data/ne_10m_lakes.shx -------------------------------------------------------------------------------- /handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/handler.py -------------------------------------------------------------------------------- /map.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/map.map -------------------------------------------------------------------------------- /ol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/ol.html -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitner/mapserverless/HEAD/serverless.yml --------------------------------------------------------------------------------