MarkerComposable is recomposing for every marker in collection #685
Labels
triage me
I really want to be triaged.
type: question
Request for information or clarification. Not an issue.
Not sure if this is a bug or an issue on my side, so I'm opening the tiket as Support request.
I migrated my markers to use
MarkerComposable
instead ofMarker
withBitmapDescriptor
to build more complex icons. I have hundreds of markers shown simultaneously with the same icon. When usingMarker
this is not an issue, Google Maps is perfectly responsive. After usingMarkerComposable
the app gets stuck for a few seconds when the markers are shown or updated.From what I could tell, the icon inside
MarkerComposable
is being regenerated for every marker even when they have the same key. Here is the simplest sample I could come up with that reproduces the issue:In the logcat you can see that the content composable was called multiple times:

The only way I could figure out to fix it was to make
rememberComposeBitmapDescriptor
public to generate the icon outside of myforEach
loop and use a regularMarker
.So my question is, am I using
MarkerComposable
wrong? I could not find anything in the docs or samples to suggest so.Tested with versions 4.3.3 and 6.5.0 on Android.
The text was updated successfully, but these errors were encountered: