We use the ShapeSource with SymbolLayer to display the map markers. For MapboxGL.StyleSheet style applied on this markers, iconAllowOverlap: true and iconIgnorePlacement: true are set. Is there any other settings are required to prevent the markers from disappearing? Thank you.


Is it zoom dependent? I have the same issue with SymbolLayer. There is a option for point shape to disable the clustering.
Ok, closing in favor of #1356
Yes it is happening when zoom out. So the solution is cluster={false} on MapboxGL.ShapeSource but it doesn't work as mentioned in #1356 ?
Hi there. I think the issue is not exactly the same as #1356 because if I remove the textField value on the SymbolLayer's style, the map markers will not disappear.
Hey I found the problem is solved when I add textAllowOverlap: true as style of the SymbolLayer.
For anyone reading this and having the same problem please make sure
iconAllowOverlap: true,
textAllowOverlap: true,
iconIgnorePlacement: true,
textIgnorePlacement: true,
are added!
THANKS THANKS THANKS !!!
Most helpful comment
Hey I found the problem is solved when I add
textAllowOverlap: trueas style of theSymbolLayer.For anyone reading this and having the same problem please make sure
are added!