vikas100 / android-maps-extensions

Automatically exported from code.google.com/p/android-maps-extensions
0 stars 0 forks source link

Calling marker.showInfoWindow on marker outside the screen with addMarkersDynamically doesn't show info window. #15

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem? Please provide sscce (short, self
contained, correct example) when possible.

init with:

        GoogleMap map = f.getExtendedMap();

        ClusteringSettings settings = new ClusteringSettings();
        settings.iconDataProvider(new DemoIconProvider(getResources()));
        settings.addMarkersDynamically(true);
        map.setClustering(settings);

        MarkerOptions options = new MarkerOptions().position(new LatLng(50, 0)).title("title");
        Marker marker = map.addMarker(options);

and later (e.g. on button click):

        marker.showInfoWindow();

and pan to show the marker.

What is the expected output? What do you see instead?

Info window should appear above the marker.

Original issue reported on code.google.com by maciek.g...@gmail.com on 17 May 2013 at 1:11

GoogleCodeExporter commented 8 years ago

Original comment by maciek.g...@gmail.com on 18 May 2013 at 4:37

GoogleCodeExporter commented 8 years ago

Original comment by maciek.g...@gmail.com on 8 Aug 2013 at 2:49