<!-- Google Map js -->
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script>
function initialize() {
var mapOptions = {
zoom: 16,
scrollwheel: false,
center: new google.maps.LatLng(34.073781, -84.302295)
};
var map = new google.maps.Map(document.getElementById('googleMap'),
mapOptions);
var marker = new google.maps.Marker({
position: map.getCenter(),
animation:google.maps.Animation.BOUNCE,
icon: 'img/icon/map-icon.png',
map: map
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>