
      var markers = [
        {
          lat: 52.331947,
          lng: 20.902194,
          link: "www.ecotech.com.pl",
          desc: "Biuro EcoTech, ul. Warszawska 31, 05-092 Łomianki",
          title: "Łomianki"
        },
        {
          lat: 52.399582,
          lng: 16.926087,
          link: "www.ecotech.com.pl",
          desc: "Biuro EcoTech, ul. Niedziałkowskiego 28, 61-578 Poznań",
          title: "Poznań"
        }
      ];



      $(document).ready(function() {
        var poland = new google.maps.LatLng(51.467697,19.340515);
        var options = {
          zoom: 7,
          center: poland,
          mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        var map = new google.maps.Map(document.getElementById("gmap"), options);
        var infoWindow = new google.maps.InfoWindow({});

        $.each(markers, function(i, el) {
          var position = new google.maps.LatLng( el.lat, el.lng);
          var marker = new google.maps.Marker({
            position: position,
            title: el.title
          });

          google.maps.event.addListener(marker, 'click', function(event) {
            infoWindow.close();
            infoWindow = new google.maps.InfoWindow({
              content: "<p>"+el.desc+"</p>"
            });
            infoWindow.open(map, marker);
          });

          marker.setMap(map);

        });
      });

