Source: bu-street/enums.js

/**
 * @fileoverview Enumerations for BlomURBEX Web API Ortho plugin.
 * Created 23/03/2017.
 * @author josea.hernandez@blom.no (Jose Antonio Hernandez)
 * @author rafael.delaviuda@blom.no (Rafael de la Viuda)
 * @author raul.sangil@blom.no (Raul Sangil)
 * @copyright Blom Data S.L. 2017
 */

goog.provide('bu.street.Viewer.Property');

/**
 * @enum {string}
 */
bu.street.ViewerProperty = {
    /** Usertoken to access BlomURBEX services */
    USERTOKEN       : 'usertoken', 
    /** Zoom level */
    ZOOM            : 'zoom',
    /** {@link bu.Coordinate Coordinates} of the street image */
    CENTER          : 'center',
    /** Rotation */
    ROTATION        : 'rotation',
    /** Name of the street image loaded */
    IMAGEID         : 'imageid',
    /** Fiel of vision */
    FOV             : 'fov',
    /** Pitch */
    PITCH           : 'pitch',
    /** Yaw */
    YAW             : 'yaw',
    /** Div element where viewer is loaded */
    TARGET          : 'target'
};