var mapElement = document.getElementById('map');
// Create the Google Map using our element and options defined above
var map = new google.maps.Map(mapElement, mapOptions);
var image = "//hanezza.com/cdn/shop/t/15/assets/beachflag.png?v=19341690556398719521739570484";
var marker = new google.maps.Marker({
position: new google.maps.LatLng(x, y),
map: map,
icon : image,
title: 'New York'
});
}