node-red-contrib-tak-registration
Version:
A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK
26 lines (24 loc) • 509 B
JavaScript
import Boundable from './Boundable'
import Serializable from '../../../../../java/io/Serializable'
export default class ItemBoundable {
constructor () {
this._bounds = null
this._item = null
const bounds = arguments[0]
const item = arguments[1]
this._bounds = bounds
this._item = item
}
getItem () {
return this._item
}
getBounds () {
return this._bounds
}
interfaces_ () {
return [Boundable, Serializable]
}
getClass () {
return ItemBoundable
}
}