I'm encountering an issue in my FlutterFlow application where custom markers are not displaying on Flutter Web, although default markers work as expected. In the Google Maps Web SDK, some functionalities, such as custom markers, are split into separate libraries (e.g., the drawing library). Typically, we would include this library by adding the following script:
<script src='https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=drawing'></script>
However, FlutterFlow does not offer an option to directly include this script. How can I resolve this issue and ensure that custom markers are displayed correctly?