Okay
  Print

How to set different Google Map position on mobile devices

Add the following code to MapSVG > Menu > JavaScript > afterLoad, change numbers as needed:

function(){
  if(MapSVG.isPhone){
    this.getData().googleMaps.map.setCenter({lat: 55.33, lng: 33.22});
    this.getData().googleMaps.map.setZoom(2);
  }
}