这里地图3.3。如何获取当前用户位置街道名称?

Here map 3.3. How to get current user position street name?

我正在使用 android HERE sdk 3.3.0。我通过使用 PositioningManager 然后 onPositionUpdated 触发

找到了当前位置
 public void onPositionUpdated(PositioningManager.LocationMethod method,GeoPosition position,boolean isMapMatched)
 {
     map.setCenter(position.getCoordinate(),Map.Animation.NONE);
 }

在这个方法之后我想得到用户所在的街道名称。我怎样才能得到它?

请调用PositioningManager#getRoadElement(),它将return当前地图匹配的街道名称。