├── .gitignore ├── README.md ├── app.css ├── app.js ├── config.xml ├── img ├── crosshair_square.gif ├── icon-128.png ├── icon-150.png └── icon-86.png ├── index.html ├── lib ├── flyjsonp │ ├── LICENSE │ ├── flyjsonp.js │ └── flyjsonp.min.js ├── framework7 │ ├── css │ │ ├── framework7.css │ │ ├── framework7.min.css │ │ └── my-app.css │ ├── img │ │ ├── i-f7.png │ │ ├── i-form-calendar.png │ │ ├── i-form-checkbox-black.png │ │ ├── i-form-checkbox-blue.png │ │ ├── i-form-checkbox-white.png │ │ ├── i-form-comment.png │ │ ├── i-form-email.png │ │ ├── i-form-gender.png │ │ ├── i-form-name.png │ │ ├── i-form-password.png │ │ ├── i-form-radio-black.png │ │ ├── i-form-radio-blue.png │ │ ├── i-form-radio-white.png │ │ ├── i-form-settings.png │ │ ├── i-form-tel.png │ │ ├── i-form-toggle.png │ │ └── i-form-url.png │ └── js │ │ ├── framework7.js │ │ ├── framework7.min.js │ │ └── my-app.js ├── leaflet-0.7.2 │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── leaflet-src.js │ ├── leaflet.css │ └── leaflet.js └── leaflet-pip │ ├── leaflet-pip.js │ └── leaflet-pip.min.js └── sfx ├── female_goodbye.mp3 └── female_hello.mp3 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/README.md -------------------------------------------------------------------------------- /app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/app.css -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/app.js -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/config.xml -------------------------------------------------------------------------------- /img/crosshair_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/img/crosshair_square.gif -------------------------------------------------------------------------------- /img/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/img/icon-128.png -------------------------------------------------------------------------------- /img/icon-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/img/icon-150.png -------------------------------------------------------------------------------- /img/icon-86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/img/icon-86.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/index.html -------------------------------------------------------------------------------- /lib/flyjsonp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/flyjsonp/LICENSE -------------------------------------------------------------------------------- /lib/flyjsonp/flyjsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/flyjsonp/flyjsonp.js -------------------------------------------------------------------------------- /lib/flyjsonp/flyjsonp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/flyjsonp/flyjsonp.min.js -------------------------------------------------------------------------------- /lib/framework7/css/framework7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/css/framework7.css -------------------------------------------------------------------------------- /lib/framework7/css/framework7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/css/framework7.min.css -------------------------------------------------------------------------------- /lib/framework7/css/my-app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/framework7/img/i-f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-f7.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-calendar.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-checkbox-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-checkbox-black.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-checkbox-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-checkbox-blue.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-checkbox-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-checkbox-white.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-comment.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-email.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-gender.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-name.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-password.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-radio-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-radio-black.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-radio-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-radio-blue.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-radio-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-radio-white.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-settings.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-tel.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-toggle.png -------------------------------------------------------------------------------- /lib/framework7/img/i-form-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/img/i-form-url.png -------------------------------------------------------------------------------- /lib/framework7/js/framework7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/js/framework7.js -------------------------------------------------------------------------------- /lib/framework7/js/framework7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/js/framework7.min.js -------------------------------------------------------------------------------- /lib/framework7/js/my-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/framework7/js/my-app.js -------------------------------------------------------------------------------- /lib/leaflet-0.7.2/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/leaflet-0.7.2/images/layers-2x.png -------------------------------------------------------------------------------- /lib/leaflet-0.7.2/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/leaflet-0.7.2/images/layers.png -------------------------------------------------------------------------------- /lib/leaflet-0.7.2/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/leaflet-0.7.2/images/marker-icon-2x.png -------------------------------------------------------------------------------- /lib/leaflet-0.7.2/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/leaflet-0.7.2/images/marker-icon.png -------------------------------------------------------------------------------- /lib/leaflet-0.7.2/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/leaflet-0.7.2/images/marker-shadow.png -------------------------------------------------------------------------------- /lib/leaflet-0.7.2/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/leaflet-0.7.2/leaflet-src.js -------------------------------------------------------------------------------- /lib/leaflet-0.7.2/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/leaflet-0.7.2/leaflet.css -------------------------------------------------------------------------------- /lib/leaflet-0.7.2/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/leaflet-0.7.2/leaflet.js -------------------------------------------------------------------------------- /lib/leaflet-pip/leaflet-pip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/leaflet-pip/leaflet-pip.js -------------------------------------------------------------------------------- /lib/leaflet-pip/leaflet-pip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/lib/leaflet-pip/leaflet-pip.min.js -------------------------------------------------------------------------------- /sfx/female_goodbye.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/sfx/female_goodbye.mp3 -------------------------------------------------------------------------------- /sfx/female_hello.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psiborg/Geofence/HEAD/sfx/female_hello.mp3 --------------------------------------------------------------------------------