├── .babelrc ├── .flowconfig ├── .gitignore ├── .idea ├── ap-tilezen-mapbox-styles.iml ├── codeStyles │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jsLibraryMappings.xml └── modules.xml ├── .npmignore ├── LICENSE ├── README.md ├── demo └── demo.html ├── deploy.sh ├── docs ├── apollo-bright-screenshot.png ├── apollo-bright-screenshot2.png ├── toner-screenshot.png └── zen-style-screenshot.png ├── generate-sprites.sh ├── package.json ├── shield_icons ├── generic-shield-1.svg ├── generic-shield-2.svg ├── generic-shield-3.svg ├── generic-shield-4.svg ├── generic-shield-5.svg ├── generic-shield-6.svg ├── generic-shield-7.svg ├── generic-shield-8.svg ├── us-highway-1.svg ├── us-highway-2.svg ├── us-highway-3.svg ├── us-highway-ak.svg ├── us-highway-al-1.svg ├── us-highway-al-2.svg ├── us-highway-al-3.svg ├── us-highway-ar.svg ├── us-highway-az-1.svg ├── us-highway-az-2.svg ├── us-highway-az-3.svg ├── us-highway-ca-2.svg ├── us-highway-co.svg ├── us-highway-dc.svg ├── us-highway-fl-2.svg ├── us-highway-fl-3.svg ├── us-highway-ga.svg ├── us-highway-hi.svg ├── us-highway-id.svg ├── us-highway-la-2.svg ├── us-highway-md-1.svg ├── us-highway-md-2.svg ├── us-highway-md-3.svg ├── us-highway-oh-1.svg ├── us-highway-oh-2.svg ├── us-highway-oh-3.svg ├── us-highway-pa-1.svg ├── us-highway-pa-2.svg ├── us-highway-pa-3.svg ├── us-highway-state-ca-1.svg ├── us-highway-state-ca-2.svg ├── us-highway-state-ca-3.svg ├── us-highway-state-square-1.svg ├── us-highway-state-square-2.svg ├── us-highway-state-square-3.svg ├── us-interstate-shield-1.svg ├── us-interstate-shield-2.svg └── us-interstate-shield-3.svg ├── src ├── StyleFactory.js ├── index.js └── styles │ ├── apollo-bright-detailed-icons.csv │ ├── apollo-bright-detailed.json │ ├── apollo-bright-icons.csv │ ├── apollo-bright.json │ ├── apollo-hybrid-satellite.json │ ├── satellite-raster.json │ ├── toner-icons.csv │ ├── toner.json │ ├── zen-icons.csv │ └── zen.json ├── tests └── StyleFactory.test.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/ap-tilezen-mapbox-styles.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/.idea/ap-tilezen-mapbox-styles.iml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | tests 2 | .idea 3 | .git 4 | .flowconfig 5 | .babelrc 6 | example 7 | temp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/demo/demo.html -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/deploy.sh -------------------------------------------------------------------------------- /docs/apollo-bright-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/docs/apollo-bright-screenshot.png -------------------------------------------------------------------------------- /docs/apollo-bright-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/docs/apollo-bright-screenshot2.png -------------------------------------------------------------------------------- /docs/toner-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/docs/toner-screenshot.png -------------------------------------------------------------------------------- /docs/zen-style-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/docs/zen-style-screenshot.png -------------------------------------------------------------------------------- /generate-sprites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/generate-sprites.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/package.json -------------------------------------------------------------------------------- /shield_icons/generic-shield-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/generic-shield-1.svg -------------------------------------------------------------------------------- /shield_icons/generic-shield-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/generic-shield-2.svg -------------------------------------------------------------------------------- /shield_icons/generic-shield-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/generic-shield-3.svg -------------------------------------------------------------------------------- /shield_icons/generic-shield-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/generic-shield-4.svg -------------------------------------------------------------------------------- /shield_icons/generic-shield-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/generic-shield-5.svg -------------------------------------------------------------------------------- /shield_icons/generic-shield-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/generic-shield-6.svg -------------------------------------------------------------------------------- /shield_icons/generic-shield-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/generic-shield-7.svg -------------------------------------------------------------------------------- /shield_icons/generic-shield-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/generic-shield-8.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-1.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-3.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-ak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-ak.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-al-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-al-1.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-al-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-al-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-al-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-al-3.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-ar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-ar.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-az-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-az-1.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-az-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-az-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-az-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-az-3.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-ca-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-ca-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-co.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-co.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-dc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-dc.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-fl-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-fl-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-fl-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-fl-3.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-ga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-ga.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-hi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-hi.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-id.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-la-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-la-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-md-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-md-1.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-md-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-md-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-md-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-md-3.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-oh-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-oh-1.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-oh-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-oh-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-oh-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-oh-3.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-pa-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-pa-1.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-pa-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-pa-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-pa-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-pa-3.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-state-ca-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-state-ca-1.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-state-ca-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-state-ca-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-state-ca-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-state-ca-3.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-state-square-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-state-square-1.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-state-square-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-state-square-2.svg -------------------------------------------------------------------------------- /shield_icons/us-highway-state-square-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-highway-state-square-3.svg -------------------------------------------------------------------------------- /shield_icons/us-interstate-shield-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-interstate-shield-1.svg -------------------------------------------------------------------------------- /shield_icons/us-interstate-shield-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-interstate-shield-2.svg -------------------------------------------------------------------------------- /shield_icons/us-interstate-shield-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/shield_icons/us-interstate-shield-3.svg -------------------------------------------------------------------------------- /src/StyleFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/StyleFactory.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles/apollo-bright-detailed-icons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/styles/apollo-bright-detailed-icons.csv -------------------------------------------------------------------------------- /src/styles/apollo-bright-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/styles/apollo-bright-detailed.json -------------------------------------------------------------------------------- /src/styles/apollo-bright-icons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/styles/apollo-bright-icons.csv -------------------------------------------------------------------------------- /src/styles/apollo-bright.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/styles/apollo-bright.json -------------------------------------------------------------------------------- /src/styles/apollo-hybrid-satellite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/styles/apollo-hybrid-satellite.json -------------------------------------------------------------------------------- /src/styles/satellite-raster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/styles/satellite-raster.json -------------------------------------------------------------------------------- /src/styles/toner-icons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/styles/toner-icons.csv -------------------------------------------------------------------------------- /src/styles/toner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/styles/toner.json -------------------------------------------------------------------------------- /src/styles/zen-icons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/styles/zen-icons.csv -------------------------------------------------------------------------------- /src/styles/zen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/src/styles/zen.json -------------------------------------------------------------------------------- /tests/StyleFactory.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/tests/StyleFactory.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollo-mapping/ap-tilezen-mapbox-styles/HEAD/webpack.config.js --------------------------------------------------------------------------------