├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── components ├── fonts.yaml ├── fonts │ ├── 8XtYtNKEyyZh481XVWfVOrO3LdcAZYWl9Si6vvxL-qU.woff │ ├── 94ug0rEgQO_WuI_xKJMFc3YhjbSpvc47ee6xR_80Hnw.woff │ ├── IkErdnKw9ItVkLeeur9GHfesZW2xOQ-xsNqO47m55DA.woff │ ├── Montserrat-Bold.woff │ ├── VWXaIPGrUapL_Y2vGs0lKALUuEpTyoUstqEm5AMlJo4.woff │ └── ZA_4ooaF_Dfdn26t_IoQOaCWcynf_cDxXwCLxiixG1c.woff ├── globals.yaml └── images │ ├── museum-sdf.png │ ├── museum.png │ ├── sdf.sh │ ├── star-sdf.png │ ├── star.png │ ├── station-sdf.png │ ├── station.png │ ├── subway-sdf.png │ ├── subway.png │ ├── terrain.jpg │ ├── terrain2.jpg │ ├── tron-terrain.jpg │ ├── zoo-sdf.png │ └── zoo.png ├── index.html ├── layers ├── boundaries-labels.yaml ├── boundaries.yaml ├── buildings-labels.yaml ├── buildings.yaml ├── earth-labels.yaml ├── earth.yaml ├── landuse-labels.yaml ├── landuse.yaml ├── places.yaml ├── pois.yaml ├── roads-labels.yaml ├── roads.yaml ├── transit-overlay.yaml ├── transit.yaml ├── ux-sdk-overlay.yaml ├── water-labels.yaml └── water.yaml ├── lib ├── FileSaver.js ├── dat.gui.min.js └── keymaster.js ├── styles ├── common.yaml ├── lines.yaml └── polygons.yaml ├── themes ├── images │ └── tron@2x.png ├── label-0.yaml ├── label-1.yaml ├── label-10.yaml ├── label-11.yaml ├── label-2.yaml ├── label-3.yaml ├── label-4.yaml ├── label-5.yaml ├── label-6.yaml ├── label-7.yaml ├── label-8.yaml ├── label-9.yaml └── tron-icons.yaml └── tron-style.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 6.0.0 2 | -------------------------------------------------------------------------------- /components/fonts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/fonts.yaml -------------------------------------------------------------------------------- /components/fonts/8XtYtNKEyyZh481XVWfVOrO3LdcAZYWl9Si6vvxL-qU.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/fonts/8XtYtNKEyyZh481XVWfVOrO3LdcAZYWl9Si6vvxL-qU.woff -------------------------------------------------------------------------------- /components/fonts/94ug0rEgQO_WuI_xKJMFc3YhjbSpvc47ee6xR_80Hnw.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/fonts/94ug0rEgQO_WuI_xKJMFc3YhjbSpvc47ee6xR_80Hnw.woff -------------------------------------------------------------------------------- /components/fonts/IkErdnKw9ItVkLeeur9GHfesZW2xOQ-xsNqO47m55DA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/fonts/IkErdnKw9ItVkLeeur9GHfesZW2xOQ-xsNqO47m55DA.woff -------------------------------------------------------------------------------- /components/fonts/Montserrat-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/fonts/Montserrat-Bold.woff -------------------------------------------------------------------------------- /components/fonts/VWXaIPGrUapL_Y2vGs0lKALUuEpTyoUstqEm5AMlJo4.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/fonts/VWXaIPGrUapL_Y2vGs0lKALUuEpTyoUstqEm5AMlJo4.woff -------------------------------------------------------------------------------- /components/fonts/ZA_4ooaF_Dfdn26t_IoQOaCWcynf_cDxXwCLxiixG1c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/fonts/ZA_4ooaF_Dfdn26t_IoQOaCWcynf_cDxXwCLxiixG1c.woff -------------------------------------------------------------------------------- /components/globals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/globals.yaml -------------------------------------------------------------------------------- /components/images/museum-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/museum-sdf.png -------------------------------------------------------------------------------- /components/images/museum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/museum.png -------------------------------------------------------------------------------- /components/images/sdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/sdf.sh -------------------------------------------------------------------------------- /components/images/star-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/star-sdf.png -------------------------------------------------------------------------------- /components/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/star.png -------------------------------------------------------------------------------- /components/images/station-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/station-sdf.png -------------------------------------------------------------------------------- /components/images/station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/station.png -------------------------------------------------------------------------------- /components/images/subway-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/subway-sdf.png -------------------------------------------------------------------------------- /components/images/subway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/subway.png -------------------------------------------------------------------------------- /components/images/terrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/terrain.jpg -------------------------------------------------------------------------------- /components/images/terrain2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/terrain2.jpg -------------------------------------------------------------------------------- /components/images/tron-terrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/tron-terrain.jpg -------------------------------------------------------------------------------- /components/images/zoo-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/zoo-sdf.png -------------------------------------------------------------------------------- /components/images/zoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/components/images/zoo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/index.html -------------------------------------------------------------------------------- /layers/boundaries-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/boundaries-labels.yaml -------------------------------------------------------------------------------- /layers/boundaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/boundaries.yaml -------------------------------------------------------------------------------- /layers/buildings-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/buildings-labels.yaml -------------------------------------------------------------------------------- /layers/buildings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/buildings.yaml -------------------------------------------------------------------------------- /layers/earth-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/earth-labels.yaml -------------------------------------------------------------------------------- /layers/earth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/earth.yaml -------------------------------------------------------------------------------- /layers/landuse-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/landuse-labels.yaml -------------------------------------------------------------------------------- /layers/landuse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/landuse.yaml -------------------------------------------------------------------------------- /layers/places.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/places.yaml -------------------------------------------------------------------------------- /layers/pois.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/pois.yaml -------------------------------------------------------------------------------- /layers/roads-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/roads-labels.yaml -------------------------------------------------------------------------------- /layers/roads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/roads.yaml -------------------------------------------------------------------------------- /layers/transit-overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/transit-overlay.yaml -------------------------------------------------------------------------------- /layers/transit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/transit.yaml -------------------------------------------------------------------------------- /layers/ux-sdk-overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/ux-sdk-overlay.yaml -------------------------------------------------------------------------------- /layers/water-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/water-labels.yaml -------------------------------------------------------------------------------- /layers/water.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/layers/water.yaml -------------------------------------------------------------------------------- /lib/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/lib/FileSaver.js -------------------------------------------------------------------------------- /lib/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/lib/dat.gui.min.js -------------------------------------------------------------------------------- /lib/keymaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/lib/keymaster.js -------------------------------------------------------------------------------- /styles/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/styles/common.yaml -------------------------------------------------------------------------------- /styles/lines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/styles/lines.yaml -------------------------------------------------------------------------------- /styles/polygons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/styles/polygons.yaml -------------------------------------------------------------------------------- /themes/images/tron@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/images/tron@2x.png -------------------------------------------------------------------------------- /themes/label-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-0.yaml -------------------------------------------------------------------------------- /themes/label-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-1.yaml -------------------------------------------------------------------------------- /themes/label-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-10.yaml -------------------------------------------------------------------------------- /themes/label-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-11.yaml -------------------------------------------------------------------------------- /themes/label-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-2.yaml -------------------------------------------------------------------------------- /themes/label-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-3.yaml -------------------------------------------------------------------------------- /themes/label-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-4.yaml -------------------------------------------------------------------------------- /themes/label-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-5.yaml -------------------------------------------------------------------------------- /themes/label-6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-6.yaml -------------------------------------------------------------------------------- /themes/label-7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-7.yaml -------------------------------------------------------------------------------- /themes/label-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-8.yaml -------------------------------------------------------------------------------- /themes/label-9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/label-9.yaml -------------------------------------------------------------------------------- /themes/tron-icons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/themes/tron-icons.yaml -------------------------------------------------------------------------------- /tron-style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangrams/tron-style/HEAD/tron-style.yaml --------------------------------------------------------------------------------