My web application has multiple filters that should be represented in the current Url so that users can simply copy/bookmark the current page to get it back later.
In angular1 I used $location.search(name, value)
to simply set seach params on change. Now I want to get something similar in angular2.
Or is it wrong?