I am having a Angular scope variable streetName.
I faced a similar problem. I found a work around. It worked well for me but not sure if it is the right approach.
Create a hidden input field in the html and assign it your value from angular. Access this value in javascript. Make sure you create it before your script tag so that it will be initialized when you reach your script tag.
Something like this:
StreetName: {{streetName}}