Skip to content

Instantly share code, notes, and snippets.

@iammert
Created August 24, 2016 08:45
Show Gist options
  • Save iammert/7a47a769c1a5084b81d691b49fbe3ff6 to your computer and use it in GitHub Desktop.
Save iammert/7a47a769c1a5084b81d691b49fbe3ff6 to your computer and use it in GitHub Desktop.
class InfoWindowRefresher implements Callback {
Marker marker;
public InfoWindowRefresher(Marker marker) {
this.marker = marker;
}
@Override
public void onSuccess() {
marker.showInfoWindow();
}
@Override
public void onError() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment