Open AlexGouget opened 1 year ago
MAJ: I deploy app on pre-prod server and the issue fly away -_-
I have the same problem. Have you solved it on DEV?
Not really, the not occur on prod. I suspect React.StrictMode to be the problem
Not really, the not occur on prod. I suspect React.StrictMode to be the problem
I can confirm, The issue was no longer there as soon as I turned off strictMode in dev. Thanks for the insight
Unusual Issue
I'm experiencing an unusual problem. I need to render a circle, a central marker, and several surrounding markers.
Here's the relevant code:
`export default function FindRelay() {
In this scenario, I would expect to see a Circle and a Marker on my map. However, nothing appears. The only way I've been able to render the Circle and Marker is by moving them beneath the component, then the watch mode refesh automatically, and the circle appears as expected.
` <GoogleMap mapContainerStyle={containerStyle} center={center} zoom={10}>
However, when I reload the page, there's nothing displayed on the map. Repeating the same operation makes the circle appear again.
Another odd behavior I noticed is that when I change the radius of the circle using the slider, the original circle remains on the map and a second one is drawn over it.