cvalenzuela / Mappa

A canvas wrapper for Maps 🗺 🌍
https://mappa.js.org
360 stars 104 forks source link

Can't remove zoomControls with Leaflet map #20

Closed aarondruck closed 6 years ago

aarondruck commented 6 years ago

Hi there

I can't seem to remove the Leaflet map zoomControls, stop zooming on mouseScroll, or the Leaflet watermark.

I added zoomControl:false to options {}, but that didn't seem to work.

screen shot 2018-06-05 at 6 45 03 am

Any ideas?

cvalenzuela commented 6 years ago

You should be able to remove the zoomControls like this:

var myMap = mappa.tileMap();
myMap.map.zoomControl.remove()
aarondruck commented 6 years ago

Thanks for the help!