is it possible to show map in dompdf in laravel? -
hello trying show map in pdf every time pdf shows me empty result. can me. if possible how can here have tried far:-
public function savepdf(request $request){ pdf::loadview('map-pdf')->save('images/map.pdf' ); echo "saved"; die; }
in map-pdf show map marker shown in browser not in pdf. please in advance.
why not use first produce image of map , marker , use image in pdf? think aware how can image of area on map, if not read here: https://developers.google.com/maps/documentation/static-maps/?csw=1
also following code can because worked me in many projects:
$options = new options(); $options->set('isremoteenabled', true); $dompdf = new dompdf($options);
Comments
Post a Comment