Fork me on GitHub
Show:

File: ../src/maps/layers/snowdepth.js

define([
  'aeris/util',
  'aeris/maps/layers/aeristile'
], function(_, AerisTile) {
  /**
   * @constructor
   * @publicApi
   * @class aeris.maps.layers.SnowDepth
   * @extends aeris.maps.layers.AerisTile
   */
  var SnowDepth = function(opt_attrs, opt_options) {
    var attrs = _.extend({
      name: 'SnowDepth',
      tileType: 'snowdepth',
      autoUpdateInterval: AerisTile.updateIntervals.MODIS
    }, opt_attrs);


    AerisTile.call(this, attrs, opt_options);
  };
  _.inherits(SnowDepth, AerisTile);


  return _.expose(SnowDepth, 'aeris.maps.layers.SnowDepth');
});