hj-gis-sdk 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dev-dist/common.esm.js +6 -0
- package/dev-dist/common.esm.js.map +1 -1
- package/dev-dist/common.js +6 -0
- package/dev-dist/common.js.map +1 -1
- package/dev-dist/types/src/common.d.ts.map +1 -1
- package/dev-dist/weather.esm.js.map +1 -1
- package/dev-dist/weather.js.map +1 -1
- package/dist/types/src/common.d.ts.map +1 -1
- package/index.html +48 -0
- package/package-lock.json +7368 -0
- package/package.json +3 -2
- package/src/common.ts +8 -0
- package/src/weather.ts +1 -1
- package/yarn.lock +3108 -0
package/dev-dist/common.esm.js
CHANGED
|
@@ -16127,6 +16127,12 @@ async function initializeApp(url, parentElement) {
|
|
|
16127
16127
|
[Flags.HoveringMouseMode]: true,
|
|
16128
16128
|
[Flags.TouchInput]: true,
|
|
16129
16129
|
[Flags.FakeMouseWithTouches]: true
|
|
16130
|
+
/// 这是一些处理网络质量的参数 降低视频质量以减少网络带宽消耗带来的卡顿问题
|
|
16131
|
+
// [NumericParameters.WebRTCFPS]: 30, // 限制帧率为30fps
|
|
16132
|
+
// [NumericParameters.WebRTCMinBitrate]: 500, // 设置最小比特率为500kbps
|
|
16133
|
+
// [NumericParameters.WebRTCMaxBitrate]: 1000, // 设置最大比特率为2000kbps
|
|
16134
|
+
// [NumericParameters.MinQuality]: 0.3, // 设置最小质量为0.3
|
|
16135
|
+
// [NumericParameters.MaxQuality]: 0.6 // 设置最大质量为0.8
|
|
16130
16136
|
}
|
|
16131
16137
|
});
|
|
16132
16138
|
const stream = new PixelStreaming(config, {
|