I’m trying to make a new app with maps. I’m even t...
# compose
l
I’m trying to make a new app with maps. I’m even thinking about actual distribution. Is it ok to implement with 100% compose? In other apps being developed by the company, it has not been completely converted due to compose navigation.
c
I'd say so. compose-maps is a thing now too which is really helpful.
s
If you want custom markers then no.
c
Custom marker support was added. It's experimental I think, but still technically there.
And even without that experimental support, you can still use AndroidView + mapView. but yeah.
m
Keep in mind, nothing is forcing you to use Compose navigation. I use the accompanist extensions because we need actual animations on transition, but it works really well. But you could always use the xml based version, and just implement your fragment’s UI using compose.