I am trying to use the Google Maps api to display a map from data from a json file, however when i try to used the json data i get the error 'Error: [$interpolate:noconcat] Error while interpolating'
<iframe id="map" width="750" height="450" frameborder="0" style="border:0" ng-src="https://www.google.com/maps/embed/v1/place?q={{office.LocAddressline1}}&key=AIzaSyBGAHnplGPjFoVvShk6Tsna3-DN8rHQBI8" allowfullscreen></iframe>
I have tried using just 'src' instead of 'ng-src' and i have tried using 'trustSrc' neither work. From what i understand its because the data is being accessed before it has loaded but i don't know how to get around that in html, in javascript i can check if the data has been loaded first before it is accessed.