I want to use a simple google maps embed that utilizes angular bindings to make the map more dynamic. So instead of the following
<iframe width="425" height="350" frameborder="0" scrolling="no"
marginheight="0" marginwidth="0" src="https://maps.google.com/maps?
f=q&source=s_q&hl=en&geocode=&q=180+N+500+E,+Salt+Lake+City,+UT
&output=embed"></iframe>
I want bindings to be added in the src attribute
<iframe width="425" height="350" frameborder="0" scrolling="no"
marginheight="0" marginwidth="0" src="https://maps.google.com/maps?
f=q&source=s_q&hl=en&geocode=&q={{event.address}},+{{event.city}},+{{event.state}}
&output=embed"></iframe>
When I do this I get this error in the console
Error:
$interpolate:noconcat Multiple Expressions
Im not sure what this means.