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