up vote 4 down vote favorite
3
share [g+] share [fb]

I need to generate PDF documents server-side that include a map, with markers and the like, but to my knowledge this isn't possible with Google Maps because of JavaScript reliance.

Is there some way to use the Google Maps API for this, or is there some other free (or cheap) alternative with this capability and comparable functionality?

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

what you can do is to use google maps static api to generate an image: http://code.google.com/apis/maps/documentation/staticmaps/

and then import that image into pdf.

link|improve this answer
Perfect. I had no idea that API existed. Thanks! – Trevor Bramble Mar 2 '09 at 19:34
yeah, lots of people don't know about it. it is more or less hidden... – dusoft Mar 2 '09 at 19:35
feedback

Extension to dusoft's answer. You can load the image with Imagick and

$im = new Imagick("image.jpg");
$im->setImageFormat("pdf");
$im->writeImage("image.pdf");
link|improve this answer
I'm embedding the image in with other text and graphics. Useful at other times, though (and I do love ImageMagick!) – Trevor Bramble Mar 2 '09 at 20:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.