CONTACT US

3432 Valley View DriveGALVA

202-555-0193


mazo18@gmail.com

www.mazo18.com

jQuery(document).ready(function() {
var myCenter=new google.maps.LatLng(32, 12);
function initialize()
{
var mapProp = {
center:myCenter,
zoom:7,
scrollwheel: false,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
var map=new google.maps.Map(document.getElementById(“big_googleMap”),mapProp);
var icon = {
url: ‘https://leggocy.com/wp-content/plugins/nightclub-theme-plugin/extensions/shortcodes/shortcodes/nightclub-contact-form-with-map/views/static/Map.svg’
};
var marker=new google.maps.Marker({
position:myCenter,
map: map,
title: ‘Himanshu Softtech’,
icon: icon
});
marker.setMap(map);
var infowindow = new google.maps.InfoWindow({
content:” Himanshu Softtech ”
});
google.maps.event.addListener(marker, ‘click’, function() {
infowindow.open(map,marker);
});
}
google.maps.event.addDomListener(window, ‘load’, initialize);
});