var MapStat = new Array();

function InitGoogleMapsById(DivId) {
    var latlng = new google.maps.LatLng(gps1,gps2);
  
    var settings = {
        zoom: gpszoom,
        center: latlng,
        mapTypeControl: true,
        mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
        navigationControl: true,
        navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
        mapTypeId: google.maps.MapTypeId.ROADMAP       // ROADMAP, SATELLITE, HYBRID or TERRAIN.
    };
    var map = new google.maps.Map(document.getElementById("map_canvas" + DivId), settings);
    
    MapStat[DivId] = map;
}

function InitGoogleMaps() {
    InitGoogleMapsById('');
}

function AddGoogleMapPoint(Id, pgps1, pgps2, pname, pval, pimg)
{
    var markerImg = new google.maps.MarkerImage(
        pimg,
        new google.maps.Size(30,44),
        new google.maps.Point(0,0),
        new google.maps.Point(15,44)
    );
    
    var markerPos = new google.maps.LatLng(pgps1,pgps2);
    
    var companyMarker = new google.maps.Marker({
        position: markerPos,
        map: MapStat[Id],
        icon: markerImg,
        //shadow: companyShadow,
        title:pname
    });
}
