
//NEW
//specify icon parameters.
var iconWidth = 50;
var iconHeight = 50;
var iconAnchorX = 25;
var iconAnchorY = 50;
var categories = [
['Text', 'images/Icons/textIcon.png'],
['Image', 'images/Icons/imageIcon.png'],
['Video', 'images/Icons/videoIcon.png'],
['Audio', 'images/Icons/audioIcon.png'],
];
// SPECIFY SHADOW
var shadowURL = 'images/Icons/shadows.png';
var shadowWidth = 150;
//SPECIFY DATA HERE IN THIS FORMAT
//[TITLE, LONG, LAT, Z INDEX, CATAGORY(ONE OF THE ABOVE), CONTENT URL, DESCRIPTION]
var content = [
['MailBox', 52.472403,-1.88914, 4,'Image','images/image/mailbox.jpg','Image of the Mailbox.'],
['Bagel Tech Podcast', 52.481403,-1.87484, 1,'Audio','audio/bagelTech121.mp3','5 minute snippet of Bagel Tech News<br /> Lots of fun and Bagel Tech mirth and plenty of editing for Ewen'],
['City Night Motion Graphics.', 52.474403,-1.85484, 2,'Video','video/titles%20iPad.m4v','This is an exciting title sequence created in Adobe After Effects<br /> File Format M4V'],
['MapPlug Readme Document', 52.473403,-1.90484, 3,'Text','text/TXT.rtf','MapPlug Readme File'],
];
$(window).load(function () {
//CALL PLUG IN TO DIV MAP_CANVAS
$('#map_canvas').mapPlug({
//SPECIFY OPTIONS HERE
zoom : 14,
center: new google.maps.LatLng(52.477743,-1.875127)
},content,categories);
});


