/*!
 * Google Maps in your site
 *
 * Editted: 5 may 2010/Jules Ernst 
 */

/* include in your html:
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
    <script type="text/javascript" src="../js/googlemaps.js"></script>
    
    Example of body-element:
    <body onload="initialize(51.920000,4.469000,15,51.916000,4.466500,'FITTZ Rotterdam' )">

    and don't forget the images
*/
function initialize(mapLat, mapLong, mapZoom, compLat, compLong, compTitle ) {
// Example of real URL:
//    "http://maps.google.nl/maps?f=q&amp;hl=nl&amp;q=FITTZ,Rijnhoutplein+3,+rotterdam&amp;sll=51.922408,4.459848&amp;sspn=0.012863,0.01811&amp;ie=UTF8&amp;cd=1&amp;cid=51916267,4466626,14166335691182476016&amp;li=lmd&amp;z=14&amp;t=m"
    var latlng = new google.maps.LatLng(mapLat,mapLong);

    var settings = {
        zoom: mapZoom,
        center: latlng,
        mapTypeControl: true,
        mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
        navigationControl: true,
        navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
    // 1e lager=lager, 2e lager=links
    var companyPos = new google.maps.LatLng(compLat, compLong);

    var companyLogo = new google.maps.MarkerImage('../images/logo.png',
    new google.maps.Size(100,50),
    new google.maps.Point(0,0),
    new google.maps.Point(50,50)
    );
    var companyShadow = new google.maps.MarkerImage('../images/logo_shadow.png',
    new google.maps.Size(130,50),
    new google.maps.Point(0,0),
    new google.maps.Point(65, 50)
    );
    var companyMarker = new google.maps.Marker({
    position: companyPos,
    map: map,
    icon: companyLogo,
    shadow: companyShadow,
            title:compTitle
        });
}
