Siarhei
Siarhei

Reputation: 2436

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?

Upvotes: 1

Views: 777

Answers (1)

David Leong
David Leong

Reputation: 1762

Please call PositioningManager#getRoadElement(), it will return the current map matched street name.

Upvotes: 1

Related Questions