I have been using the Gmap API (v2) for dynamically displaying some data:
oMap.map = new GMap2(document.getElementById("map"));
oMap.geoXml = new GGeoXml('http://darudar.org/var/files/workaroud/gmap/data.php?num=30');
I changed to v3 of the API, using the following code:
var georssLayer = new google.maps.KmlLayer('http://darudar.org/var/files/workaroud/gmap/data.php?num=30');
georssLayer.setMap(oMap.map);
Unfortunately, after the change the data markers do not show correctly or do not show at all. With v2, zooming and scaling allows a kml layer to get a BBOX array and to redraw the markers correctly. Does anyone know how to recreate this functionality with v3 of the API ?
PS: Sorry for my eng...