Hey there!
I've been working with Angular and attempting to integrate an iframe
. I have tried various methods to insert the longitude
and latitude
values from the database, but every time I try to input something like this, I encounter an error.
Here's what I attempted:
<iframe width="100%" height="250" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q={{product.mall.lat}},{{product.mall.long}}&key= key" allowfullscreen></iframe>
This is the error I encountered when using the above approach:
[$interpolate:noconcat]
Here's a standard iframe
for reference:
<iframe width="100%" height="250" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q=40.7127837,-74.0059413&key= Akey" allowfullscreen></iframe>