Send your messages via below form
Phone
+234 (9) 292 0425
Our Email
info@barocci.com.ng
Our Office
18Olu Akinbola Avenue off Amadasun street by Jakande lekki Lagos. Fundex Bitport
function mapfunction_cz_77837() {
const codevzPlusWaitForOverlay = setInterval(() => {
if (typeof google.maps.OverlayView !== "undefined") {
clearInterval(codevzPlusWaitForOverlay);
google.maps.Map.prototype.setCenterWithOffset = function(latlng, offsetX, offsetY) { var map = this; var ov = new google.maps.OverlayView(); ov.onAdd = function() { var proj = this.getProjection(); var aPoint = proj.fromLatLngToContainerPixel(latlng); aPoint.x = aPoint.x+offsetX; aPoint.y = aPoint.y+offsetY; map.setCenter(proj.fromContainerPixelToLatLng(aPoint)); }; ov.draw = function() {}; ov.setMap(this); };
var windx = jQuery(window),
latlng = { lat:6.433027794595334, lng:3.520312122477808},
myOptions = { mapId: "", zoom: 14, scrollwheel: false, disableDefaultUI: false, center: latlng, fullscreenControl: false, mapTypeControl: false, keyboardShortcuts: false },
cz_77837 = new google.maps.Map(document.getElementById("cz_77837"), myOptions ),
setCenterOffset = function() {
if ( windx.width() < 768 ) { cz_77837.setCenterWithOffset( latlng, 0, 0 ); } else { cz_77837.setCenterWithOffset( latlng, 0, 0 ); } }; setCenterOffset(); windx.on( "resize", function() { setCenterOffset(); }); var styles = [{"featureType": "all",stylers: [{ hue: "#ff0000" },{ saturation: -20}]}];var styledMap = new google.maps.StyledMapType(styles,{name: "Styled Map"});cz_77837.mapTypes.set("map_style", styledMap); cz_77837.setMapTypeId("map_style");class CustomMarker extends google.maps.OverlayView { constructor(position, map) { super(); this.position = position; this.map = map; this.div = null; this.setMap(map); } onAdd() { this.div = document.createElement("div"); this.div.style.position = "absolute"; this.div.style.cursor = "pointer"; this.div.style.transform = "translate(-50%, -100%)"; this.div.innerHTML = `
`;
this.getPanes().overlayMouseTarget.appendChild(this.div); this.tooltip = this.div.querySelector(".tooltip");
// Show title on click this.div.addEventListener("click", (event) => { event.stopPropagation(); this.tooltip.style.display = this.tooltip.style.display === "block" ? "none" : "block"; });
// Hide title when clicking outside google.maps.event.addListener(this.map, "click", () => { this.tooltip.style.display = "none"; }); }
draw() { const overlayProjection = this.getProjection(); const position = overlayProjection.fromLatLngToDivPixel(this.position);
if (position && this.div) { this.div.style.left = `${position.x}px`; this.div.style.top = `${position.y}px`; } }
onRemove() { if (this.div) { this.div.parentNode.removeChild(this.div); this.div = null; } } }
// Add a custom marker at a specific location new CustomMarker(new google.maps.LatLng(6.433027794595334, 3.520312122477808), cz_77837); }
}, 250 );
}