I finally conquered the problem and got a working solution.
function initialize() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map_canvas"));
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(-25.935, 28.17), 10);
// Add markers to the map
// Define Icons
var baseIcon = new GIcon();
baseIcon.iconSize=new GSize(32,32);
baseIcon.shadowSize=new GSize(56,32);
baseIcon.iconAnchor=new GPoint(16,16);
baseIcon.infoWindowAnchor=new GPoint(16,0);
var station = new GIcon(baseIcon, "http://maps.google.com/mapfiles/kml/pal4/icon57.png", null, "http://maps.google.com/mapfiles/kml/pal4/icon57s.png");
var plane = new GIcon(baseIcon, "http://maps.google.com/mapfiles/kml/pal2/icon56.png", null, "http://maps.google.com/mapfiles/kml/pal2/icon56s.png");
function createMarker(point,html,icon) {
var marker = new GMarker(point,icon);
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(html);
});
return marker;
}
// OR Tambo
var point = new GLatLng(-26.131774, 28.231645);
var marker = createMarker(point,'<div id="infoBox"><a href="http://www.gautrainschedule.co.za/station.php?sid=5&action=custom">OR Tambo<\/a> is located inside OR Tambo International Airport<\/div>', station)
map.addOverlay(marker);
// Rhodesfield
var point = new GLatLng(-26.126582, 28.225250);
var marker = createMarker(point,'<div id="infoBox"><a href="http://www.gautrainschedule.co.za/station.php?sid=6&action=custom">Rhodesfield Station<\/a> services Kempton Park area, excluding OR Tambo International airport.<\/div>', station)
map.addOverlay(marker);
// Marlboro
var point = new GLatLng(-26.084702, 28.105270);
var marker = createMarker(point,'<div id="infoBox"><a href="http://www.gautrainschedule.co.za/station.php?sid=7&action=custom">Marlboro Station<\/a> is located close to the N3 highway<\/div>', station)
map.addOverlay(marker);
// Sandton
var point = new GLatLng(-26.107855, 28.058138);
var marker = createMarker(point,'<div id="infoBox"><a href="http://www.gautrainschedule.co.za/station.php?sid=8&action=custom">Sandton Station<\/a> is located close to major shopping center and other major corporations.<\/div>', station)
map.addOverlay(marker);
// Draw East West Route
var polyline = new GPolyline([
new GLatLng(-26.107855, 28.058138),
new GLatLng(-26.084702, 28.105270),
new GLatLng(-26.126582, 28.225250),
new GLatLng(-26.131774, 28.231645)
], "#00ff00",8);
map.addOverlay(polyline);
}
}
</script>
And to display the map use the following html:
<div id="map_canvas" style="width: 290px; height: 350px"></div>