I\'m trying to remove the zoom controls (+/-) on a LeafletJS map.
I\'m using the MapBox.js version of Leaflet but most of the operations are the same as Leaflet. I
This worked for me:
var map = new L.map('map', { zoomControl: false });
With mapbox try:
var map = L.mapbox.map('map', { zoomControl: false });
See map creation and the zoomControl option in the Leaflet documentation.