You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To allow the removal of the popup that appears when the user clicks on a marker in the Android platform (I haven't tested iOS yet, so I don't know if it's the same there) through a map option.
Platform(s)
Android
iOS (?)
Preferred Solution
A boolean variable, for example called "disableMarkerPopup" that should be passed to Googlemap.create
this.map = await GoogleMap.create({
id: 'map',
element: mapRef, // reference to the capacitor-google-map element
apiKey: process.env.GOOGLE_MAPS_API_KEY, // Your Google Maps API Key
....
**disableMarkerPopup: true**
.....
config: {
.....
},
});
The text was updated successfully, but these errors were encountered:
Feature Request
Plugin
@capacitor/google-maps
Description
To allow the removal of the popup that appears when the user clicks on a marker in the Android platform (I haven't tested iOS yet, so I don't know if it's the same there) through a map option.
Platform(s)
Android
iOS (?)
Preferred Solution
A boolean variable, for example called "disableMarkerPopup" that should be passed to Googlemap.create
The text was updated successfully, but these errors were encountered: