Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
7222a9a1
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7222a9a1
编写于
9月 30, 2022
作者:
C
cff-gite
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加资料
Signed-off-by:
N
cff-gite
<
chenfeifei8@huawei.com
>
上级
137ce87e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
39 addition
and
8 deletion
+39
-8
zh-cn/application-dev/reference/apis/js-apis-sensor.md
zh-cn/application-dev/reference/apis/js-apis-sensor.md
+39
-8
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-sensor.md
浏览文件 @
7222a9a1
...
...
@@ -2021,7 +2021,7 @@ getDeviceAltitude(seaPressure: number, currentPressure: number, callback: AsyncC
```
js
try
{
sensor
.
getDeviceAltitude
(
0
,
200
,
function
(
err
,
data
)
{
sensor
.
getDeviceAltitude
(
0
,
200
,
function
(
data
)
{
console
.
info
(
"
Successed to get getDeviceAltitude interface get data:
"
+
data
);
});
}
catch
(
err
)
{
...
...
@@ -2084,7 +2084,7 @@ getInclination(inclinationMatrix: Array<number>, callback: AsyncCallback&l
```
js
try
{
sensor
.
getInclination
([
1
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
1
],
function
(
err
,
data
)
{
sensor
.
getInclination
([
1
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
1
],
function
(
data
)
{
console
.
info
(
"
Successed to get getInclination interface get data:
"
+
data
);
})
}
catch
(
err
)
{
...
...
@@ -2148,7 +2148,7 @@ try {
```
js
try
{
sensor
.
getAngleVariation
([
1
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
1
],
[
1
,
0
,
0
,
0
,
0.87
,
-
0.50
,
0
,
0.50
,
0.87
],
function
(
err
,
data
)
{
sensor
.
getAngleVariation
([
1
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
1
],
[
1
,
0
,
0
,
0
,
0.87
,
-
0.50
,
0
,
0.50
,
0.87
],
function
(
data
)
{
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
console
.
info
(
"
data[
"
+
i
+
"
]:
"
+
data
[
i
]);
}
...
...
@@ -2215,7 +2215,7 @@ getRotationMatrix(rotationVector: Array<number>, callback: AsyncCallback<A
```
js
try
{
sensor
.
getRotationMatrix
([
0.20046076
,
0.21907
,
0.73978853
,
0.60376877
],
function
(
err
,
data
)
{
sensor
.
getRotationMatrix
([
0.20046076
,
0.21907
,
0.73978853
,
0.60376877
],
function
(
data
)
{
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
)
{
console
.
info
(
"
data[
"
+
i
+
"
]:
"
+
data
[
i
]);
}
...
...
@@ -4458,7 +4458,7 @@ transformCoordinateSystem(inRotationVector: Array<number>, coordinates: Co
旋转提供的旋转矩阵,使其可以以不同的方式表示坐标系。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.
transformRotationMatrix
](
#
sensortransformrotationmatrix9)
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.
transformRotationMatrix
](
#
sensortransformrotationmatrix9
)
**系统能力**
:SystemCapability.Sensors.Sensor
...
...
@@ -4490,7 +4490,7 @@ transformCoordinateSystem(inRotationVector: Array<number>, coordinates: Co
旋转提供的旋转矩阵,使其可以以不同的方式表示坐标系。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.
transformRotationMatrix
](
#
sensor-
transformrotationmatrix9-1 )
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.
transformRotationMatrix
](
#sensor
transformrotationmatrix9-1
)
**系统能力**
:SystemCapability.Sensors.Sensor
...
...
@@ -4527,9 +4527,9 @@ getGeomagneticField(locationOptions: LocationOptions, timeMillis: number, callba
获取地球上特定位置的地磁场。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getGeomagneticInfo
](
#
sensorgetgeomagneticinfo9)
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getGeomagneticInfo
](
#sensorgetgeomagneticinfo9
)
**系统能力**
:SystemCapability.Sensors.Sensor
lk -
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4557,9 +4557,12 @@ getGeomagneticField(locationOptions: LocationOptions, timeMillis: number): Promi
获取地球上特定位置的地磁场。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getGeomagneticInfo
](
#sensorgetgeomagneticinfo9-1
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| --------------- | ----------------------------------- | ---- | ----------------- |
| locationOptions |
[
LocationOptions
](
#locationoptions
)
| 是 | 地理位置。 |
...
...
@@ -4588,6 +4591,8 @@ getAltitude(seaPressure: number, currentPressure: number, callback: AsyncCallbac
根据气压值获取设备所在的海拔高度。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getDeviceAltitude
](
#sensorgetdevicealtitude9
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4617,6 +4622,8 @@ getAltitude(seaPressure: number, currentPressure: number): Promise<number>
根据气压值获取设备所在的海拔高度。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getDeviceAltitude
](
#sensorgetdevicealtitude9-1
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4650,6 +4657,8 @@ getGeomagneticDip(inclinationMatrix: Array<number>, callback: AsyncCallbac
根据倾斜矩阵计算地磁倾斜角。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getInclination
](
#sensorgetinclination9
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4678,6 +4687,8 @@ getGeomagneticDip(inclinationMatrix: Array<number>): Promise<number>
根据倾斜矩阵计算地磁倾斜角。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getInclination
](
#sensorgetinclination9-1
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4709,6 +4720,8 @@ getAngleModify(currentRotationMatrix: Array<number>, preRotationMatrix: Ar
获取两个旋转矩阵之间的角度变化。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getAngleVariation
](
#sensorgetanglevariation9
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4741,6 +4754,8 @@ getAngleModify(currentRotationMatrix: Array<number>, preRotationMatrix: Ar
获取两个旋转矩阵之间的角度变化。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getAngleVariation
](
#sensorgetanglevariation9-1
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4777,6 +4792,8 @@ createRotationMatrix(rotationVector: Array<number>, callback: AsyncCallbac
将旋转矢量转换为旋转矩阵。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getRotationMatrix
](
#sensorgetrotationmatrix9
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4808,6 +4825,8 @@ createRotationMatrix(rotationVector: Array<number>): Promise<Array<n
将旋转矢量转换为旋转矩阵。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getRotationMatrix
](
#sensorgetrotationmatrix9-1
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4843,6 +4862,8 @@ createQuaternion(rotationVector: Array<number>, callback: AsyncCallback<
将旋转矢量转换为四元数。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getQuaternion
](
#sensorgetquaternion9
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4874,6 +4895,8 @@ createQuaternion(rotationVector: Array<number>): Promise<Array<numbe
将旋转矢量转换为四元数。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getQuaternion
](
#sensorgetquaternion9-1
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4909,6 +4932,8 @@ getDirection(rotationMatrix: Array<number>, callback: AsyncCallback<Arr
根据旋转矩阵计算设备的方向。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getOrientation
](
#sensorgetorientation9
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4941,6 +4966,8 @@ getDirection(rotationMatrix: Array<number>): Promise<Array<number>
根据旋转矩阵计算设备的方向。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getOrientation
](
#sensorgetorientation9-1
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -4976,6 +5003,8 @@ createRotationMatrix(gravity: Array<number>, geomagnetic: Array<number&
根据重力矢量和地磁矢量计算旋转矩阵。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getRotationMatrix
](
#sensorgetrotationmatrix9-2
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
@@ -5005,6 +5034,8 @@ createRotationMatrix(gravity: Array<number>, geomagnetic: Array<number&
根据重力矢量和地磁矢量计算旋转矩阵。
[
newMethod
](
https://gitee.com/openharmony/docs/pulls/10074#newmethod
)
,请使用
[
sensor.getRotationMatrix
](
#sensorgetrotationmatrix9-3
)
**系统能力**
:SystemCapability.Sensors.Sensor
**参数:**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录