Here is my code, I can't figure out how to display the info windows. If someone types schools in the searchbox, the school icons appear but can't be clicked. I want them to be clickable and for them to show the associated data. Any help woudl be much appreciated. Thanks.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<link href="https://developers.google.com/maps/documentation/javascript/examples/default.css"
rel="stylesheet">
<title>Google Maps JavaScript API v3 Example: SearchBox</title>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&libraries=places"></script>
<script>
function initialize() {
// Create an array of styles.
var styles = [
{
stylers: [
]
},{
featureType: "road",
elementType: "geometry",
stylers: [
{ color: "#ffffff" },
{ saturation: 0 },
{ lightness: 0 },
{ visibility: "simplified" }
]
},
{
featureType: "landscape",
stylers: [
{ color: "#f0f0f0" },
{ saturation: 0 },
{ lightness: 0 },
{ visibility: "simplified" }
]
},
{
featureType: "poi",
stylers: [
{ color: "#9cd361" },
{ saturation: 0 },
{ lightness: 0 },
{ visibility: "simplified" }
]
},
{
featureType: "road",
elementType: "labels",
stylers: [
{ visibility: "on" },
]
},
{
featureType: "road.highway",
elementType: "labels",
stylers: [
{ color: "#ad1726" },
{ visibility: "on" },
]
}
]
// Create a new StyledMapType object, passing it the array of styles,
// as well as the name to be displayed on the map type control.
var styledMap = new google.maps.StyledMapType(styles,
{name: "Styled Map"});
// Create a map object, and include the MapTypeId to add
// to the map type control.
var mapOptions = {
zoom: 17,
center: new google.maps.LatLng(51.502102, -0.19098),
disableDefaultUI: true,
mapTypeControl: false
};
var map = new google.maps.Map(document.getElementById('map_canvas'),
mapOptions);
//Associate the styled map with the MapTypeId and set it to display.
map.mapTypes.set('map_style', styledMap);
map.setMapTypeId('map_style');
var markers = [
['<img src="images/vicarage-logo2.jpg" width="200"/><p class="gmap-popup">Vicarage Gate</p>', 51.502102, -0.19098],
['<img src="images/harrods-logo.png"/><p class="gmap-popup">Harrods<br>Address: 87-135 Brompton Road<br>Knightsbridge<br>London<br>SW1X 0NA<br>Phone:020 7730 1234</p>', 51.499989, -0.16289]
];
var infowindow = new google.maps.InfoWindow(), marker, i;
for (i = 0; i < markers.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(markers[i][1], markers[i][2]),
map: map
});
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(markers[i][0]);
infowindow.open(map, marker);
}
})(marker, i));
}
var map = new google.maps.Map(document.getElementById('map_canvas'), {
mapTypeId: ('map_style')
});
var defaultBounds = new google.maps.LatLngBounds(
new google.maps.LatLng(51.502102, -0.19098),
new google.maps.LatLng(51.505340, -0.19070));
map.fitBounds(defaultBounds);
var input = document.getElementById('target');
var searchBox = new google.maps.places.SearchBox(input);
var markers = [];
google.maps.event.addListener(searchBox, 'places_changed', function() {
var places = searchBox.getPlaces();
for (var i = 0, marker; marker = markers[i]; i++) {
marker.setMap(null);
}
markers = [];
var bounds = new google.maps.LatLngBounds();
for (var i = 0, place; place = places[i]; i++) {
var image = new google.maps.MarkerImage(
place.icon, new google.maps.Size(71, 71),
new google.maps.Point(0, 0), new google.maps.Point(17, 34),
new google.maps.Size(25, 25));
var marker = new google.maps.Marker({
map: map,
icon: image,
title: place.name,
position: place.geometry.location
});
markers.push(marker);
bounds.extend(place.geometry.location);
}
map.fitBounds(bounds);
});
google.maps.event.addListener(map, 'bounds_changed', function() {
var bounds = map.getBounds();
searchBox.setBounds(bounds);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<style>
#search-panel {
position: absolute;
top: 30px;
left: 80px;
width: 350px;
z-index: 5;
background-color: #000;
padding: 5px;
border: 1px solid #999;
}
#target {
width: 345px;
}
</style>
</head>
<body>
<div id="search-panel">
<input id="target" type="text" placeholder="Search Box">
</div>
<div id="map_canvas"></div>
</body>
</html>