Как в этой карте переместить кнопки увеличения влево?
var map, popup, Popup;
/** Initializes the map and the custom popup. */
function initMap() {
var posCenter = {lat: 53.6443086, lng: 23.8193946};
var posMarker = {lat: 53.6443086, lng: 23.8193946};
var check = document.getElementById('contacts-map').offsetWidth;
var map = new google.maps.Map(document.getElementById('contacts-map'),
{
center: posCenter,
zoom: 12,
streetViewControl: false,
fullscreenControl: false,
mapTypeControl: false,
});
marker = new google.maps.Marker({
position: posMarker,
map: map,
});
}