Im trying to open directions from a marker click on google maps in a div rather than in a new window.
Currently I can open the direction in a new window but I want to open them in an iframe in a div that will be displayed when a marker is clicked.
I cant use a static src url on the iframe because I use different URL for the different markers on the map.
Any help would be great, this is what I have so far.
var depots = [
['Barnsley', 53.572664, -1.455800, 11, 'http://maps.google.com/?daddr=53.572664,-1.455800&directionsmode=driving'],
['Birmingham', 52.359018, -1.938033, 10, 'http://maps.google.com/?daddr=52.359018,-1.938033&directionsmode=driving'],
['Brentwood', 51.576452, 0.278843, 9, 'http://maps.google.com/?daddr=51.576452,0.278843&directionsmode=driving'],
['Bristol', 51.501280, -2.366513, 8, 'http://maps.google.com/?daddr=51.501280,-2.366513&directionsmode=driving'],
['Cambridge', 52.184396, -0.064012, 7, 'http://maps.google.com/?daddr=52.184396,-0.064012&directionsmode=driving'],
['Edinburgh', 56.129890, -3.390296, 6, 'http://maps.google.com/?daddr=56.129890,-3.390296&directionsmode=driving'],
['Gatwick', 51.152422, -0.216219, 5, 'http://maps.google.com/?daddr=51.152422,-0.216219&directionsmode=driving'],
['Glasgow', 55.927129, -4.467189, 4, 'http://maps.google.com/?daddr=55.927129,-4.467189&directionsmode=driving'],
['Heathrow', 51.508121, -0.387525, 3, 'http://maps.google.com/?daddr=51.508121,-0.387525&directionsmode=driving'],
['Manchester', 53.220004, -2.414895, 2, 'http://maps.google.com/?daddr=53.220004,-2.414895&directionsmode=driving'],
['Southampton', 50.959088, -1.345449, 1, 'http://maps.google.com/?daddr=50.959088,-1.345449&directionsmode=driving'],
];
for (var i = 0; i < locations.length; i++) {
var depot = locations[i];
var myLatLng = new google.maps.LatLng(depot[1], depot[2]);
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
icon: image,
shape: shape,
title: depot[0],
zIndex: depot[3],
url: depot[4]
});
google.maps.event.addListener(marker, 'click', function() {
document.getElementById('direction').style.display = "";
window.location.href = this.url;
});
}
The HTML:
<div id="directionholder">
<iframe id="directioniframe" frameborder="0" > </iframe>
</div>
I have tried making a var of this.url and setting that in the function but no luck
var URLis = this.url;
document.getElementById('directioniframe').src = " URLis ";