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

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -