Custom markers and Google Maps
<script>
var image = new google.maps.MarkerImage(
'images/map-marker.png'
);
var marker = new google.maps.Marker({
position: new google.maps.LatLng(52.696660, 1.089510),
icon: image,
map: map,
title: "Name of business"
});
</script>