function initializare() {
var coordonate = new google.maps.LatLng(47.8088955,22.8566560);
var setari = {
zoom: 16,
center: coordonate,
mapTypeControl: true,
mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
navigationControl: true,
navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var harta = new google.maps.Map(document.getElementById("spatiu_harta"), setari);
var icoanaFirma = new google.maps.MarkerImage("firma.png",
new google.maps.Size(150,50),
new google.maps.Point(0,0),
new google.maps.Point(75,50)
);
var coordonateFirma = new google.maps.LatLng(46.76821,23.58792);
var marcatorFirma = new google.maps.Marker({
position: coordonateFirma,
map: harta,
icon: icoanaFirma,
title: "Aici stau eu!"
});
var textPrezentare = "
"
SC Firma SRL"+
"
Suntem aproape de Piata Unirii.
Reparam mecanisme defecte.
"+
"
";
var fereastraInformatii = new google.maps.InfoWindow({
content: textPrezentare
});
google.maps.event.addListener(marcatorFirma, "click", function() {
fereastraInformatii.open(harta,marcatorFirma);
});
}