var centreIcon = new CM.Icon();
centreIcon.image = "/images/marker_cross.png";
centreIcon.iconSize = new CM.Size(15, 15);
centreIcon.iconAnchor = new CM.Point(7.5, 7.5);
newLocation = new CM.LatLng(gpsLat2, gpsLng2);
centreMarker = new CM.Marker(newLocation,
{
title : "Centre", icon : centreIcon, draggable : true
}
);
map.addOverlay(centreMarker);