var map; 
function initialize(){
        var mapDiv = document.getElementById("content"); 
        //var myLatlng = new google.maps.LatLng(34.053290, -118.245009);
        //var myLatlng = new google.maps.LatLng(34.101287,-118.34507);
        var myLatlng = new google.maps.LatLng(37.7627632,-122.4183735);
        var myOptions = { 
            zoom:10, 
            center:myLatlng, 
            mapTypeId:google.maps.MapTypeId.ROADMAP,
            mapTypeControl:true,
              mapTypeControlOptions: { style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
            }; 
        map = new google.maps.Map(mapDiv, myOptions); 

}; 

function LoadMarkers(){
    CreateMarker('37.7817449','-122.4077001','Alternative Patient Cooperative','<b>Alternative Patient Cooperative</b><br/>953 Mission Street, Suite #108 San Francisco, California 94103<br />(415) 618-0680','googlegreen.png',true,true);
    CreateMarker('37.782282','-122.403528','The Green Door','<b>The Green Door</b><br/>843 Howard Street San Francisco, California 94103<br />(415) 541-9590','googlegreen.png',true,true);
    CreateMarker('37.766169','-122.419424','Medithrive','<b>Medithrive</b><br/>1933 Mission St San Francisco, California 94103<br />(415) 556-2000','googlegreen.png',true,true);
    CreateMarker('37.935318','-122.520126','Going Green','<b>Going Green</b><br/>402 Tamal Plaza Corte Madera, California 94925<br />(415) 891-8552','googlegreen.png',true,true);
    CreateMarker('37.9365136','-122.5197131','Marin Holistic Solutions','<b>Marin Holistic Solutions</b><br/>200 Tamal Plaza Suite #135 Corte Madera, California 94925<br />(415) 945-9416','googlegreen.png',true,true);
    CreateMarker('38.0690875','-122.5416084','Apela Collective','<b>Apela Collective</b><br/>469 Entrada Drive  Novato, California 94949<br />(415) 234-6957','googlegreen.png',true,true);
    CreateMarker('38.294868','-122.280069','Going Green','<b>Going Green</b><br/>611 Soscol Ave. Unit #102  Napa, California 94559<br />(707) 253-2646','googlegreen.png',true,true);
    CreateMarker('36.969592','-121.913416','The Green Light Society','<b>The Green Light Society</b><br/>Medical Marijuana Delivery Service Palo Alto, California 94019<br />(650) 245-7772','googlegreen.png',true,true);
    CreateMarker('37.528785','-122.514071','Blue Heaven Coastside','<b>Blue Heaven Coastside</b><br/>2305 Carlos St., Suite A Moss Beach, California 94038<br />(650) 728-7003','googlegreen.png',true,true);
    CreateMarker('37.4723996','-122.2049003','Blue Heaven Collective','<b>Blue Heaven Collective</b><br/>3149 Middlefield Rd Redwood City, California 94063<br />(650) 361-8009','googlegreen.png',true,true);
    CreateMarker('38.326585','-122.706312','Starbuds Wellness Center','<b>Starbuds Wellness Center</b><br/>Medical Marijuana Delivery Service Cotati, California 94931<br />(707) 481-2796','googlegreen.png',true,true);
    CreateMarker('38.5088331','-122.9873462','Marvin\'s Gardens Herbal Cooperative','<b>Marvin\'s Gardens Herbal Cooperative</b><br/>15025 River Road  Guerneville, California 95446<br />(707) 869-1291','googlegreen.png',true,true);
}

function CreateMarker(lat,lon,title,desc) {
    var image = 'images/point-28.png';
    var LatLon = new google.maps.LatLng(lat,lon);
    var marker = new google.maps.Marker({
        position: LatLon,
        map: map,
        title: title,
        icon: image
        });
    var infowindow = new google.maps.InfoWindow({
        content: desc
        });
    google.maps.event.addListener(marker, 'click', function(){
        infowindow.open(map,marker);
        });
}



    
google.setOnLoadCallback(initialize);
google.setOnLoadCallback(LoadMarkers);


