├── .gitignore ├── .npmignore ├── README.md ├── img ├── countries.png └── land.png └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | world/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visionscarto/world-atlas/HEAD/README.md -------------------------------------------------------------------------------- /img/countries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visionscarto/world-atlas/HEAD/img/countries.png -------------------------------------------------------------------------------- /img/land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visionscarto/world-atlas/HEAD/img/land.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visionscarto/world-atlas/HEAD/package.json --------------------------------------------------------------------------------