├── .gitignore ├── LICENSE.txt ├── assets ├── annotations │ └── snapshot.png ├── colorScheme.gif ├── lang.gif ├── overlays │ └── snapshot.png ├── poi.gif ├── readme-maps.developer.apple.com-snapshot.png ├── t.gif └── z.gif ├── config.json ├── mapkit-snapshots.js ├── null-island.geojson ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Do not commit your secrets 3 | config*.json 4 | *.p8 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /assets/annotations/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/assets/annotations/snapshot.png -------------------------------------------------------------------------------- /assets/colorScheme.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/assets/colorScheme.gif -------------------------------------------------------------------------------- /assets/lang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/assets/lang.gif -------------------------------------------------------------------------------- /assets/overlays/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/assets/overlays/snapshot.png -------------------------------------------------------------------------------- /assets/poi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/assets/poi.gif -------------------------------------------------------------------------------- /assets/readme-maps.developer.apple.com-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/assets/readme-maps.developer.apple.com-snapshot.png -------------------------------------------------------------------------------- /assets/t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/assets/t.gif -------------------------------------------------------------------------------- /assets/z.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/assets/z.gif -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/config.json -------------------------------------------------------------------------------- /mapkit-snapshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/mapkit-snapshots.js -------------------------------------------------------------------------------- /null-island.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/null-island.geojson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblabs/apple-maps-web-snapshot-cli/HEAD/readme.md --------------------------------------------------------------------------------