├── .gitignore ├── LICENSE ├── README.md ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── css ├── japan-eq-locator.css └── mapbox-gl.css ├── data ├── hypocenters.json ├── intensity.json ├── intensity.png ├── intensity@2x.json ├── intensity@2x.png └── style.json ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── js ├── deck-gl.min.js ├── japan-eq-locator.js └── mapbox-gl.js ├── screenshot1.jpg └── site.webmanifest /.gitignore: -------------------------------------------------------------------------------- 1 | data/h* 2 | css/*.svg 3 | js/loader.js 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/README.md -------------------------------------------------------------------------------- /android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/android-chrome-192x192.png -------------------------------------------------------------------------------- /android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/android-chrome-512x512.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /css/japan-eq-locator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/css/japan-eq-locator.css -------------------------------------------------------------------------------- /css/mapbox-gl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/css/mapbox-gl.css -------------------------------------------------------------------------------- /data/hypocenters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/data/hypocenters.json -------------------------------------------------------------------------------- /data/intensity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/data/intensity.json -------------------------------------------------------------------------------- /data/intensity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/data/intensity.png -------------------------------------------------------------------------------- /data/intensity@2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/data/intensity@2x.json -------------------------------------------------------------------------------- /data/intensity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/data/intensity@2x.png -------------------------------------------------------------------------------- /data/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/data/style.json -------------------------------------------------------------------------------- /favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/favicon-16x16.png -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/index.html -------------------------------------------------------------------------------- /js/deck-gl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/js/deck-gl.min.js -------------------------------------------------------------------------------- /js/japan-eq-locator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/js/japan-eq-locator.js -------------------------------------------------------------------------------- /js/mapbox-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/js/mapbox-gl.js -------------------------------------------------------------------------------- /screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/screenshot1.jpg -------------------------------------------------------------------------------- /site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagix/japan-eq-locator/HEAD/site.webmanifest --------------------------------------------------------------------------------