esri-leaflet
Version:
Leaflet plugins for consuming ArcGIS Online and ArcGIS Server services.
17 lines (12 loc) • 304 B
JavaScript
import { Task } from './Task';
export var Identify = Task.extend({
path: 'identify',
between: function (start, end) {
this.params.time = [start.valueOf(), end.valueOf()];
return this;
}
});
export function identify (options) {
return new Identify(options);
}
export default identify;