There is a simple js to enable visual refresh in google maps.
google.maps.visualRefresh = true; // enabling the visual refresh globaly
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new
google.maps.LatLng(-34.397, 150.644), // center point
mapTypeId:
google.maps.MapTypeId.ROADMAP
};
map = new
google.maps.Map(document.getElementById('map-canvas'),
mapOptions); // load the map
}
google.maps.event.addDomListener(window, 'load',
initialize);
Visual refresh add new look and feel of google maps to your own web sites googl map.