Timemap.js v.1.6

Namespace TimeMap.loaders

Defined in:
timemap.js

Namespace for different data loader functions. New loaders can add their factories or constructors to this object; loader functions are passed an object with parameters in TimeMap.init().

    TimeMap.init({
        datasets: [
            {
                // name of class in TimeMap.loaders
                type: "json_string",
                options: {
                    url: "mydata.json"
                },
                // etc...
            }
        ],
        // etc...
    });

Static Methods

Method
TimeMap.loaders.cancelAll()
Cancel all current load requests.
Namespace Detail
TimeMap.loaders
Static Method Details
TimeMap.loaders.cancelAll()
Cancel all current load requests. In practice, this is really only applicable to remote asynchronous loads. Note that this doesn't cancel the download of data, just the callback that loads it.
©2010 Nick Rabinowitz
Documentation generated by JsDoc Toolkit 2.3.2 on Thu Jun 24 2010 13:58:01 GMT-0700 (PDT)