> I'm wondering if there's any other method which can force tiles to be > refreshed/refetched from the server?
I'm surprised that ever worked - you're basically telling the map to do nothing. as a quick fix, you could try adding another step: zoom = map.getZoom() map.setZoom(zoom-1) map.setZoom(zoom+1) but if that doesn't work you might have to rethink... can I ask why you have to reload the tiles? -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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.
