UNPKG

cesium-navigation-es6

Version:
18 lines (15 loc) 463 B
import UserInterfaceControl from './UserInterfaceControl' /** * The view-model for a control in the navigation control tool bar * * @alias NavigationControl * @constructor * @abstract * * @param {Terria} terria The Terria instance. */ var NavigationControl = function (terria) { UserInterfaceControl.apply(this, arguments) } NavigationControl.prototype = Object.create(UserInterfaceControl.prototype) export default NavigationControl