Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hallahan/VirtualFence
This is a geotrigger project I did for my Web Mapping course at Oregon State University. It utilizes LeafletPlayback.
https://github.com/hallahan/VirtualFence
Last synced: 5 days ago
JSON representation
This is a geotrigger project I did for my Web Mapping course at Oregon State University. It utilizes LeafletPlayback.
- Host: GitHub
- URL: https://github.com/hallahan/VirtualFence
- Owner: hallahan
- Created: 2015-02-05T05:23:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-05T07:04:54.000Z (almost 10 years ago)
- Last Synced: 2024-08-01T12:35:14.014Z (3 months ago)
- Language: JavaScript
- Size: 9.5 MB
- Stars: 12
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - hallahan/VirtualFence - This is a geotrigger project I did for my Web Mapping course at Oregon State University. It utilizes LeafletPlayback. (others)
README
# Virtual Fences with Leaflet Playback
This is the final project I made for my web mapping course at [Oregon State University's Cartography Department](http://cartography.oregonstate.edu/). in the Spring of 2013. The primary engine behind the GPS animation in Leaflet is provided by [LeafletPlayback](https://github.com/hallahan/LeafletPlayback/), a Leaflet plugin that grew out of this project.
**NOTE: It appears that Geoloqui will be shutting down it's services on August of 2015. The price I pay for using a _Proprietary Service_...**
## [View Demo: Interaction of GPS Tracks and Virtual Fences](http://virtualfence.theoutpost.io)
![alt text](https://raw.github.com/hallahan/VirtualFence/master/docs/screenshots/readme.png)
The demo demonstrates the usage of the plug-in in the context of having the replay of GPS tracks trigger Virtual Fences. The location of the GPS tracks during playback are sent to Esri's [Geoloqi](https://geoloqi.com/) API which consumes location updates and fires GeoTrigger messages when a [Virtual Fence](http://en.wikipedia.org/wiki/Geo-fence) is crossed. [See Demo Documentation...](https://github.com/hallahan/VirtualFence/blob/master/docs/demo.md)
The LeafletPlayback component provides the ability to replay GPS Tracks in the form of GeoJSON objects. Rather than simply animating a marker along a polyline, the speed of the animation is synchroized to a clock. The playback functionality is similar to a video player--you can start and stop playback, change the playback speed, load GPS tracks, as well as set the playback time with a slider or calendar/time-picker widget.
## GPS Data Format
Leaflet Playback consumes GPS tracks in the form of GeoJSON. The next feature to be implemented for the plugin is the added ability to parse GPX tracks as well. The schema of the GeoJSON data is as follows:
```javascript
{
"type": "Feature",
"geometry": {
"type": "MultiPoint",
"coordinates": [/*array of [lng,lat] coordinates*/]
},
"properties": {
"time": [/*array of UNIX timestamps*/]
}
}
```Other attributes may be added to the GeoJSON object, but this is the required minimum schema for the plug-in to work.
GeoJSON tracks can be added dynamically to Leaflet Playback by calling:
```javascript
playback.addTracks(tracks);
```## Usage
```javascript
var playback = new L.Playback(map, demoTracks, clockCallback);
```Where map is your Leaflet map object, demoTracks is a GeoJSON object or an array of GeoJSON objects, and clockCallback is a function you feed it that will send the timestamp value on each tick.