Skip to content

[capacitor/google-maps]: allow to set text inside the marker. #110

@ngmiduc

Description

@ngmiduc

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
      },
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions