I would like to build an app, which will show user markers on web. I found out that the only plugin, that supports google street view is - https://pub.dev/packages/flutter_google_street_view , but it does not support markers on web, only ios, so I thought, that might be a good idea to add a feature to it, that allows to do it.
I see it uses another dart package to communicate with js, which allows to add markers (https://developers.google.com/maps/documentation/javascript/markers?hl=pl) - https://pub.dev/packages/google_maps but I've got trouble with understanding how everything interacts. The only file that imports this package is convert.dart (https://github.com/zyzdev/flutter_street_view/blob/master/flutter_google_street_view/lib/src/web/convert.dart), which just convert types between dart and js, I do not see package usage like from example page (https://github.com/a14n/dart-google-maps/blob/master/example/05-drawing_on_map/marker-simple/page.dart).
I know that flutter_google_street_view uses https://pub.dev/packages/street_view_platform_interface to provide interface to user.
I guess there's need to mess with mobile package, because here's how an implementation of ios markers looks like- https://github.com/zyzdev/flutter_street_view/blob/4297972282d4c3bf16bc023f56a7e0622cffe14c/flutter_google_street_view/lib/src/mobile/street_view_state.dart#L90 .
I've asked about adding a feature to the plugin owner, but without response. I'm looking for any advice or points of direction. Thank you in advance.