I've multiple geo string like geo:0,0q=1+a+bc, and I'm gonna assign this to ng-href of the anchor tag. Like below I'm doing it.
HTML
<a ng-href="{{geoString}}">Location</a> </br>
Above tag is rendering fine on HTML but adding unsafe: string geo:0,0q=1+a+bc inside href attribute
Rendered HTML
<a ng-href="geo:0,0q=12345+jefferson+st" href="unsafe:geo:0,0q=12345+jefferson+st">Location</a>
Plunkr with demonstrating issue.
I don't want unsafe: inside href, Any idea why it is pre-appending  unsafe: before geoString & How do i remove it?
 
     
    