Convert google map to pdf in php

I am using TCPDF to create PDF documents and I want to convert the google static image map to my pdf. How can I achieve this, some examples?

+6
source share
2 answers

Why don't you try a google static map to insert a map in pdf format. A static map creates an image file that easily adds a detailed document. I have not tried, but it should work ...

See http://code.google.com/apis/maps/documentation/staticmaps/ for more information.

+4
source

Create a link to a static google map, documents can be found http://code.google.com/intl/nl-NL/apis/maps/documentation/staticmaps/

Use the writeHTML method for TCPDF to write the following:

<img src="http://yourgooglemapurl.com"/> 
+1
source

Source: https://habr.com/ru/post/908010/


All Articles