Here map 3.3. How to get current user position street name?
问题 I am using android HERE sdk 3.3.0. I've find current location by using PositioningManager then onPositionUpdated triggered public void onPositionUpdated(PositioningManager.LocationMethod method,GeoPosition position,boolean isMapMatched) { map.setCenter(position.getCoordinate(),Map.Animation.NONE); } After this method I want to get street name which user stand. how can i get that? 回答1: Please call PositioningManager#getRoadElement(), it will return the current map matched street name. 来源: