Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MarkerClusterer.renderer is not supporting multiple AdvancedMarkerElement, still use deprecated Marker #913

Open
polyakz opened this issue Aug 29, 2024 · 0 comments
Labels
triage me I really want to be triaged. type: feature request ‘Nice-to-have’ improvement, new feature or different behavior or design.

Comments

@polyakz
Copy link

polyakz commented Aug 29, 2024

I am using the: "@googlemaps/markerclusterer": "^2.5.3"

I have encountered the following issues:

I am trying to render AdvancedMarkerElement within the MarkerClusterer initialization phase, but I don't want to use the Marker class because this has become deprecated.

const config = {
    map: this.map,
    markers: this.markers,
    algorithm: new SuperClusterAlgorithm({radius: 16, zoom: 8}),
    renderer: {
        render:  ({ count, position }) =>
            new AdvancedMarkerElement({
                title: String(count),
                position: position,
                content: customContent
            })
    }
}

new MarkerClusterer(config);

The issue is within the AdvancedMarkerElement.content, as it is written in the property's comment:

The DOM Element backing the visual of an AdvancedMarkerElement. Note: AdvancedMarkerElement does not clone the passed-in DOM element. Once the DOM element is passed to an AdvancedMarkerElement, passing the same DOM element to another AdvancedMarkerElement will move the DOM element and cause the previous AdvancedMarkerElement to look empty.

This leads to a rendering issue, where I can only render one custom AdvancedMarkerElement. I also don't want to use the old Marker, but there are no alternatives at the moment, so I have to use a deprecated method.

Please consider supporting multiple AdvancedMarkerElement (some way) within the MarkerClusterer or comment me a workaround!

Thank you!

@polyakz polyakz added triage me I really want to be triaged. type: feature request ‘Nice-to-have’ improvement, new feature or different behavior or design. labels Aug 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
triage me I really want to be triaged. type: feature request ‘Nice-to-have’ improvement, new feature or different behavior or design.
Projects
None yet
Development

No branches or pull requests

1 participant