Chris Arriola

Results 134 comments of Chris Arriola

I have not yet been able to test this scenario. Perhaps a boolean property should be exposed in the `GoogleMap` composable to support the case when the map is nested...

Thanks @sandorbogyo. Just confirmed that that solution works.

@LouisCAD good idea. Would be good to have under a "Common Patterns" section. I'd be happy to add but feel free to send a pull request as well.

Happy to take this one. Thanks for raising @CTaylorII

Thanks for reporting this issue. Maps Compose should mirror the same behavior as the underlying SDK so this should definitely be integrated.

This should be fixed. But a workaround would be to use a `mutableStateOf` instead. So: ``` @Composable fun MapScreen(){ val waypoints by remember{ mutableStateOf()} Map(waypoints) { waypoints = waypoints +...

I believe the issue might be between the interaction of `mutableStateListOf` and a `ComposeNode`'s `Updater`. Because `Polyline` as currently implemented _should_ work. I've opened an issue in the public issue...

I filed an issue on the Compose-side to support this as the current available APIs cannot, afaik, support this feature request. You can +1 https://issuetracker.google.com/issues/252891031

You can use the `MapEffect` API as a workaround to obtain a handle to the `GoogleMap` Maps SDK object so that you can use GeoJSON