let options: ToDataUrlOptions = {
uncompress: true
};
this.map.toDataURL(options).then((base64: string) => {
console.log(base64);
});
Params | Type | Details |
---|---|---|
uncompress | boolean | Sets true if you want to prevent resizing to the screen resolution. |