HERE 地图使用 Bounds 获取基点

HERE maps Get cardinal points using Bounds

我需要使用 Here Api javascript 获取基点的位置,我正在使用以下代码:

var bounds = map.getViewModel().getLookAtData().bounds;
                console.log(bounds.getBoundingBox());

我得到的结果是这些值,我不知道什么是北、南、东和西。

K {ba: -79.39228887213605, ga: -79.38982123984238, ja: 43.6432819654959, la: 43.641401124059136, b: null, …}
a: null
b: null
ba: -79.39228887213605
c: null
ga: -79.38982123984238
ja: 43.6432819654959
la: 43.641401124059136
__proto__: Wf

我用以下代码行解决了我的问题:

var bounds = map.getViewModel().getLookAtData().bounds;
var points = bounds.getBoundingBox();
var top = points.getTop();
var left = points.getLeft();
var right = points.getRight();
var bottom = points.getBottom();