/VirtualFence

This is a geotrigger project I did for my Web Mapping course at Oregon State University. It utilizes LeafletPlayback.

Primary LanguageJavaScript

Virtual Fences with Leaflet Playback

This is the final project I made for my web mapping course at Oregon State University's Cartography Department. in the Spring of 2013. The primary engine behind the GPS animation in Leaflet is provided by 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

alt text

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 API which consumes location updates and fires GeoTrigger messages when a Virtual Fence is crossed. See Demo Documentation...

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:

{
  "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:

playback.addTracks(tracks);

Usage

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.