Tell me pliz. I am a typesetter myself and do not know JS at all. Created a map and for her balun. It has white borders how to remove?

function initialize() { var myLatlng = new google.maps.LatLng(49.988975, 36.231562); var myOptions = { disableDefaultUI: true, scrollwheel: false, zoom: 13, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById("map_canva s"), myOptions); var marker = new google.maps.Marker({ position: myLatlng, map: map, title: "" }); var contentString = '<div id="content_map">Тут всё то про что должно быть рассказано</div>'; var infowindow = new google.maps.InfoWindow({ content: contentString }); var marker = new google.maps.Marker({ position: myLatlng, map: map, title: '' }); google.maps.event.addListener(marker, 'click', function() { infowindow.open(map, marker); }); } google.maps.event.addDomListener(window, 'load', initialize); 

enter image description here

HERE LINK LOOK PLIZE http://jsfiddle.net/RazDva/4a87k/477/

  • discussing your question in the chat, one of the users (@Grundy) advised you to go to the help: тут скорее RTFM :) надо смотреть какие настройки можно этом балуну выставлять, и наверняка в справке есть пример как кастомизировать его под свои нужды and more: я говорю - пускай в справку идет :) - intro94

0