I am trying to embed a google map's iframe to my project, one per restaurant. The problem is that if the value of the addres is in:
$scope.restaurant.address
And I have to insert this code:
<iframe width="450" height="250"
src="https://www.google.com/maps/embed/v1/place?key=MY_KEY&q={{restaurant.address}}">
</iframe>
{{restaurant.address}} is not correctly interpreted, and when the link is generated instead of the proper address, {{restaurant.address}} appears.
Any clue? Any help would be appreciated, thanks in advance!