In reference to this post - Detect when Android v2 maps has loaded
I've implemented the onMapLoaded() method in my MainActivity (which implements OnMapLoadedCallback) as such:
@Override
public void onMapLoaded(){
if(...) {
// move the camera somewhere else on the map
mMap.setOnMapLoadedCallback(this);
} else {
...
}
}
in an attempt to get onMapLoaded() get called every time the new portion of the map is done loading. Sadly this doesn't work, onMapLoaded() only gets called once. Does anyone know how we're supposed to "request another callback"?
EDIT: Waiting for a response (been a while already) here https://code.google.com/p/gmaps-api-issues/issues/detail?id=6747