美文网首页开源
Mapbox地图打印

Mapbox地图打印

作者: happy_port | 来源:发表于2020-03-10 12:45 被阅读0次
地图打印

print的js地址:https://github.com/happyport/Mapbox_Print

调用方法:

map._preserveDrawingBuffer=true;

map._render();

const data = map.getCanvas().toDataURL('image/png');

const img=document.createElement('img');

img.src=data;

print(img)

.then(()=>{

map._preserveDrawingBuffer=false;

    map._render();

}).catch(err=>{

})

相关文章

网友评论

    本文标题:Mapbox地图打印

    本文链接:https://www.haomeiwen.com/subject/gwlwdhtx.html