Map Control Positioning

Code:

$(document).ready(function() { 
    $('#map_canvas').googleMaps({
        controls: {
            type: {
                location: 'G_ANCHOR_TOP_LEFT',
            },
            zoom: {
                location: 'G_ANCHOR_TOP_RIGHT',
            }
        }
    }); 
});