属性概述
名称 | 类型 | 描述 | 类 |
---|---|---|---|
String | 设置季节而不是日期。 更多详情 | DaylightViewModel | |
Boolean | 开始或暂停日间动画,该动画循环播放一天中的每一分钟。 更多详情 | DaylightViewModel | |
String | 类的名称。 更多详情 | Accessor | |
Boolean | 指示是否显示太阳投射的阴影。 更多详情 | DaylightViewModel | |
Date | utcOffset 给出的时区中的日历日期。 更多详情 | DaylightViewModel | |
Number | 控制白天和日期动画速度。 更多详情 | DaylightViewModel | |
Boolean | 指示是否使用日期和时间来确定光源的位置。 更多详情 | DaylightViewModel | |
Number | utcOffset 给定时区中,一天中时间的滑块位置。 更多详情 | DaylightViewModel | |
Number | UTC 时间与微件中显示的时间之间的小时差。 更多详情 | DaylightViewModel | |
SceneView | 微件将从中操作的视图。 更多详情 | DaylightViewModel | |
Boolean | 开始或暂停日期动画,该动画循环播放一年中的每个月。 更多详情 | DaylightViewModel |
属性详细信息
-
currentSeason String
-
设置季节而不是日期。每个季节使用与季节分点和至日相对应的固定日期。
可能值:"spring"|"summer"|"fall"|"winter"
-
dayPlaying Boolean
-
开始或暂停日间动画,该动画循环播放一天中的每一分钟。设置为
true
以启动动画,设置为false
以暂停动画。- 默认值:false
-
类的名称。声明的类名称格式化为
geoscene.folder.className
。
-
directShadowsEnabled Boolean
-
指示是否显示太阳投射的阴影。有关此属性的详细信息,请参阅 SceneView.environment.lighting.directShadowsEnabled。
-
playSpeedMultiplier Number
-
控制白天和日期动画速度。
- 默认值:1.0
示例// Plays the daylight animation at half of the default speed daylightWidget.playSpeedMultiplier = 0.5;
-
sunLightingEnabled Boolean
-
指示是否使用日期和时间来确定光源的位置。如果为
false
,则使用 VirtualLighting 相对于照相机定位光源。
-
utcOffset Number
-
UTC 时间与微件中显示的时间之间的小时差。
-
view SceneView
-
微件将从中操作的视图。
-
yearPlaying Boolean
-
开始或暂停日期动画,该动画循环播放一年中的每个月。设置为
true
以启动动画,设置为false
以暂停动画。- 默认值:false
方法概述
名称 | 返回值类值 | 描述 | 类 |
---|---|---|---|
添加一个或多个与对象的生命周期相关联的句柄。 更多详情 | Accessor | ||
Boolean | 如果存在指定的句柄组,则返回 true。 更多详情 | Accessor | |
移除对象拥有的句柄组。 更多详情 | Accessor |
方法详细说明
-
addHandles(handleOrHandles, groupKey)inherited起始版本:GeoScene Maps SDK for JavaScript 4.25
-
添加一个或多个与对象的生命周期相关联的句柄。当对象被销毁时,将移除句柄。
// Manually manage handles const handle = reactiveUtils.when( () => !view.updating, () => { wkidSelect.disabled = false; }, { once: true } ); // Handle gets removed when the object is destroyed. this.addHandles(handle);
参数handleOrHandles WatchHandle|WatchHandle[]对象销毁后,标记为要移除的句柄。
groupKey *optional标识句柄应添加到的组的键。组中的所有句柄稍后都可使用 Accessor.removeHandles() 进行删除。如果未提供键,则句柄将被添加到默认组。
-
起始版本:GeoScene Maps SDK for JavaScript 4.25
-
如果存在指定的句柄组,则返回 true。
参数groupKey *optional组键。
返回类型 描述 Boolean 如果存在指定的句柄组,则返回 true
。示例// Remove a named group of handles if they exist. if (obj.hasHandles("watch-view-updates")) { obj.removeHandles("watch-view-updates"); }
-
removeHandles(groupKey)inherited起始版本:GeoScene Maps SDK for JavaScript 4.25
-
移除对象拥有的句柄组。
参数groupKey *optional要移除的组键或组键的数组或集合。
示例obj.removeHandles(); // removes handles from default group obj.removeHandles("handle-group"); obj.removeHandles("other-handle-group");