I had to prove a concept the other day to embed google maps in a form. A big of googling and some ideas that had to mash up.
Create a form with an ActiveX control “Microsoft Web Browser”.
On the init method after super call. Add this line.
ctrlactiveX.Navigate('https://maps.google.com.au/maps?q=1 St Georges Terrace, PERTH WA 6000+(This is a random place)&output=embed');
Reference:
Thanks to this blog.
http://microsoft-dynamics-ax-erp.blogspot.com.au/2012/01/integrate-google-map-in-dynamics-ax.html
Minor change I had to make was to figure out the URL parameters. By passing the output=embed, you get a pretty good result.