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?
Please call PositioningManager#getRoadElement(), it will return the current map matched street name.