I have created phonegap project and added one html tag:
<iframe width="600" height="450" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q=Sydnew%20Opera%20House&key=MY_KEY" allowfullscreen></iframe>
When I launch PhoneGap Desktop, embedded Google Map shows successfully in my browser. However, when I build it for Android, Map does not shows.
In my config.xml
I have added these lines of tags:
<access origin="*"/>
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
It already have permissions for Internet. Why this is happening?
UPDATE
I have added this line of code in my config.xml
:
<allow-navigation href="https://www.google.com/maps/embed/*" />
Still it does not showing.