leaflet mengubah posisi tombol zoom

var map = L.map('map', {
    maxZoom: 20,
    minZoom: 6,
    zoomControl: false // add this line
});

//redefine zoom position 
L.control.zoom({
    position: 'bottomright'
}).addTo(map);
BlueMoon