Well, I've _tried_ to check that I'm calling all the same functions but the [i] part is definitely stumping me. In the original (working) version, everything's done via a spreadsheet feed and the array is carried through. In the new version, it doesn't seem that the [i] part is used for creating the markers.
I think what I need to do is replace the [i] with its comparable variable in the new version, but I don't quite know how to do that. I would love to retain the Zmarker feature, since some of the markers are close together and it's nice to see the visited ones drop to a lower Zindex, but I decided it's just a bit too complex...it was hard enough just switching things over to the MySql/PHP from the spreadsheet feed. So I don't think I need to worry about the Zindex coefficient. Any additional help with how to figure out the label/function issue would be great. I got part of the problem already solved by additional playing around. A new version of the file is at www.onsenjapan.net/testindex2.php if anyone wants to look. It has markers that change color...half of the problem solved. But the corresponding parts of the sidebar remain dead...I want them to highlight too when someone mouses over a marker. Many, many, thanks in advance for any and all tips and help. On Aug 30, 3:21 am, Esa <[EMAIL PROTECTED]> wrote: > On 30 elo, 03:34, Ralph Ames <[EMAIL PROTECTED]> wrote: > > > Have you checked that you have all the same functions as before > > and called in the same manner? > > Exactly. That means that you also must index your markers and sidebar > entries just like you do in the first example (parameter i). > > Another thing that has nothing to with the issue. The z-indexes of map > overlays in api were changed just recently. The numbers are 32 times > higher than before. You should edit the coefficient to retrieve the z- > index switching action. > > Replace > return GOverlay.getZIndex(marker.getPoint().lat())-n*10000; > > By > return GOverlay.getZIndex(marker.getPoint().lat())-n*320000; --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
