private IGlobeGraphicsElementProperties Get3DElementProperties(double height)
        {
            IGlobeGraphicsElementProperties globeGraphicsElementProperties;

            globeGraphicsElementProperties = new GlobeGraphicsElementProperties();
            globeGraphicsElementProperties.DrapeElement    = true;
            globeGraphicsElementProperties.OrientationMode = esriGlobeGraphicsOrientation.esriGlobeGraphicsOrientationDefault;
            globeGraphicsElementProperties.DrapeZOffset    = height;

            return(globeGraphicsElementProperties);
        }
        private IGlobeGraphicsElementProperties Get3DElementProperties(double height)
        {
            IGlobeGraphicsElementProperties globeGraphicsElementProperties;

            globeGraphicsElementProperties = new GlobeGraphicsElementProperties();
            globeGraphicsElementProperties.DrapeElement    = true;
            globeGraphicsElementProperties.OrientationMode = esriGlobeGraphicsOrientation.esriGlobeGraphicsOrientationLocal;
            globeGraphicsElementProperties.DrapeZOffset    = height;
            globeGraphicsElementProperties.FixedScreenSize = false;
            globeGraphicsElementProperties.Illuminate      = false;

            return(globeGraphicsElementProperties);
        }