I need to get google maps into word documents.
But it's not working the code below.
==================================================================
$url = "<img src=\"http://maps.googleapis.com/maps/api/staticmap?center=-15.800513,-47.91378&zoom=11&size=200x200&sensor=false\">";
$docx->embedHTML($url);
==================================================================
The <img> tag is available in the web page, but it is not able to embed to document file.
I also tested the code below, but it's not working at all.
==================================================================
$docx->replaceTemplateVariableByHTML('ADDRESS', 'inline', '<img src="http://maps.google.com/maps/api/staticmap?center=Brooklyn+Bridge,New+York,NY&zoom=14&size=50x50&maptype=roadmap&sensor=false"/>');
==================================================================
Let me know how can I generate this document please.
Help me.
Thank you.