ToDataUrlOptions interface

April 10, 2018 ยท View on GitHub

let options: ToDataUrlOptions = {
  uncompress: true
};

this.map.toDataURL(options).then((base64: string) => {
  console.log(base64);
});

Interface members

Params Type Details
uncompress boolean Sets true if you want to prevent resizing to the screen resolution.