Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Shaun Kelly
35,560 PointsGoogle maps info-window on 2 markers
How would i add an info window to these two markers?
<script>
$(function(){
var mapOptions = {
zoom: 14,
center: new google.maps.LatLng(52.192423, -2.227480),
mapTypeId: google.maps.MapTypeId.ROADMAP,
streetViewControl: true
};
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
var iconBase = '{{config.url}}images/mapicon/';
var marker = new google.maps.Marker({
position: new google.maps.LatLng({{ office.Latitude }}, {{ office.Longitude }}),
map: map,
icon: iconBase + 'agicon.png',
title: "59-60 Foregate Street"
});
var marker2 = new google.maps.Marker({
position: new google.maps.LatLng(52.18838,-2.23381),
map: map,
icon: iconBase + 'agicon.png',
title: "23, St John's"
});
})
</script>