capacitor-plugins
capacitor-plugins copied to clipboard
[capacitor/google-maps]: allow to set text inside the marker.
Feature Request
Plugin
capacitor/google-maps
Description
Allow more customizations for markers on the google-map plugin. Allowing to set the text inside the marker would be useful for displaying information on the map.
Platform(s)
ios/web/android
Preferred Solution
use the label attribute like on the map class from google maps original API or in the javascript integration of google maps.
{
id: marker.id,
position: {
lat: marker.latitude,
lng: marker.longitude,
},
label: {
fontFamily: 'Manrope',
fontSize: '14px',
fontWeight: '600',
color: 'white',
className: 'marker-label',
text: marker.text
},
}
labels are only available for web platform, native iOS and Android SDKs don't support that feature.
Adding type: feature request
label to the issue to consider the feature internally for web platform.
Hello. It would be very helpful to be able to place a label attached to the marker and thus not have to click on it. Similar to the web version.
That would allow for more agile handling in certain situations where with a quick look at the map with its markers, you can quickly know what everything is.
Thank you so much.