var mapLocation = new google.maps.LatLng(35.716351,-0.575505); //change coordinates here var marker; var map; function initialize() { var mapOptions = { zoom: 15, // Change zoom here center: mapLocation, scrollwheel: false, styles: [ { "featureType": "all", "elementType": "labels.text.fill", "stylers": [ { "saturation": 36 }, { "color": "#000000" }, { "lightness": 40 } ] }, { "featureType": "all", "elementType": "labels.text.stroke", "stylers": [ { "visibility": "on" }, { "color": "#000000" }, { "lightness": 16 } ] }, { "featureType": "all", "elementType": "labels.icon", "stylers": [ { "visibility": "off" } ] }, { "featureType": "administrative", "elementType": "geometry.fill", "stylers": [ { "color": "#000000" }, { "lightness": 20 } ] }, { "featureType": "administrative", "elementType": "geometry.stroke", "stylers": [ { "color": "#000000" }, { "lightness": 17 }, { "weight": 1.2 } ] }, { "featureType": "landscape", "elementType": "geometry", "stylers": [ { "color": "#000000" }, { "lightness": 27 } ] }, { "featureType": "poi", "elementType": "geometry", "stylers": [ { "color": "#000000" }, { "lightness": 21 } ] }, { "featureType": "road.highway", "elementType": "geometry.fill", "stylers": [ { "color": "#000000" }, { "lightness": 17 } ] }, { "featureType": "road.highway", "elementType": "geometry.stroke", "stylers": [ { "color": "#000000" }, { "lightness": 29 }, { "weight": 0.2 } ] }, { "featureType": "road.arterial", "elementType": "geometry", "stylers": [ { "color": "#000000" }, { "lightness": 18 } ] }, { "featureType": "road.local", "elementType": "geometry", "stylers": [ { "color": "#000000" }, { "lightness": 16 } ] }, { "featureType": "transit", "elementType": "geometry", "stylers": [ { "color": "#000000" }, { "lightness": 19 } ] }, { "featureType": "water", "elementType": "geometry", "stylers": [ { "color": "#000000" }, { "lightness": 17 } ] } ] }; map = new google.maps.Map(document.getElementById('map'), mapOptions); //change address details here var contentString = '
' + '
' // + '

ATD

' + '

ATD

' + '
CITÉ BEL HORIZON ,LOCAL N°01 ,BIR EL DJIR ,ORAN ,ALGERIE 

05 60 92 39 07
05 60 94 58 69

archi_atd1@yahoo.fr

' + '
'; var infowindow = new google.maps.InfoWindow({ content: contentString, }); marker = new google.maps.Marker({ map: map, draggable: true, icon: 'img/icon-marker.png' , title: 'ATD', //change title here animation: google.maps.Animation.DROP, position: mapLocation }); google.maps.event.addListener(marker, 'click', function() { infowindow.open(map, marker); }); } if ($('#map').length) { google.maps.event.addDomListener(window, 'load', initialize); }