├── .couchappignore ├── .couchapprc ├── .gitignore ├── CNAME ├── README.md ├── external ├── icanhaz │ └── ICanHaz.js ├── leaflet-markercluster │ ├── MarkerCluster.Default.css │ ├── MarkerCluster.css │ ├── leaflet.markercluster-src.js │ └── leaflet.markercluster.js └── leaflet │ └── Bing.js ├── images ├── favicon.ico ├── node_circle.svg └── wifi_icon60.png ├── index.html ├── map.html ├── rewrites.json ├── script ├── owm_app.js └── owm_widget.js └── style ├── owm_app.css └── owm_widget.css /.couchappignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/.couchappignore -------------------------------------------------------------------------------- /.couchapprc: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | openwifimap.net 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/README.md -------------------------------------------------------------------------------- /external/icanhaz/ICanHaz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/external/icanhaz/ICanHaz.js -------------------------------------------------------------------------------- /external/leaflet-markercluster/MarkerCluster.Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/external/leaflet-markercluster/MarkerCluster.Default.css -------------------------------------------------------------------------------- /external/leaflet-markercluster/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/external/leaflet-markercluster/MarkerCluster.css -------------------------------------------------------------------------------- /external/leaflet-markercluster/leaflet.markercluster-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/external/leaflet-markercluster/leaflet.markercluster-src.js -------------------------------------------------------------------------------- /external/leaflet-markercluster/leaflet.markercluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/external/leaflet-markercluster/leaflet.markercluster.js -------------------------------------------------------------------------------- /external/leaflet/Bing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/external/leaflet/Bing.js -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/node_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/images/node_circle.svg -------------------------------------------------------------------------------- /images/wifi_icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/images/wifi_icon60.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/index.html -------------------------------------------------------------------------------- /map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/map.html -------------------------------------------------------------------------------- /rewrites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/rewrites.json -------------------------------------------------------------------------------- /script/owm_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/script/owm_app.js -------------------------------------------------------------------------------- /script/owm_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/script/owm_widget.js -------------------------------------------------------------------------------- /style/owm_app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/style/owm_app.css -------------------------------------------------------------------------------- /style/owm_widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freifunk/openwifimap-html5/HEAD/style/owm_widget.css --------------------------------------------------------------------------------