101 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Advice
0
votes
1
replies
72
views
Google Maps reloads tiles as gray when revisiting previously viewed area in @react-google-maps/api
I am using @react-google-maps/api^2.20.6 to display Google Maps in my React website.
When a user pans or zooms the map, Google Maps loads the tiles correctly.
However, when the user moves away and ...
2
votes
2
answers
185
views
How to make Google Maps JavaScript API zoom in/out process smoother?
I’m using the Google Maps JavaScript API with a lot of SVG markers clustered using MarkerClusterer. When I zoom in and out, the map feels laggy and the zoom animation isn’t smooth — it stutters or ...
0
votes
2
answers
301
views
NextJS + React Google Maps Api not working on production build
I have dependencies
"dependencies": {
"@react-google-maps/api": "^2.20.7",
"next": "15.4.1",
"react": "19.1.0",
&...
0
votes
2
answers
2k
views
Google Maps API - Migration of Autocomplete class to PlaceAutocompleteElement class
I got to know that Google is deprecating it's old places api and replacing with the new one's. In our application, we use Maps Javascript api with the library=places param, The following way: https://...
3
votes
4
answers
1k
views
Why do I keep getting the ApiNotActivatedMapError when I've checked that my API key is working and able to call the necessary maps APIs?
I'm trying to create a React component for a text input field using the Google Maps API autocomplete feature. This is the code I have so far:
"use client"
import React, { useRef } ...
0
votes
0
answers
148
views
Using Google Maps API with DeckGLOverlay throws an undefined error
So I'm following this example by visgl from this PR: https://github.com/visgl/react-google-maps/blob/1a0ac6e13d15ceda5212d310ffc2370ffdd90e65/examples/deckgl-overlay/src/app.tsx
I even am using the ...
8
votes
2
answers
445
views
Google Maps React Component Crashes with TrafficLayer: "Uncaught Error: b/369845599"
I'm using the @react-google-maps/api library to render a Google Map in my React app. The map displays markers for couriers and shows directions for selected couriers. I also want to include a ...
0
votes
1
answer
257
views
How to modify/remove markers from React Google Maps package?
I am currently trying to make a map using the React Google Maps. Currently, I can plot the markers just fine but when I go to change them or remove them I run into problems where it only renders a ...
1
vote
0
answers
52
views
How to clear a specific polyline (DirectionsRender) from google map using react-google-maps/api?
I am trying to integrate google map with DirectionsService. I have drawn multiple routes on the maps. But i have to remove particular route from the map on the button click. How its possible? I tried ...
4
votes
2
answers
856
views
React Google Maps API MarkerClusterer rerender
I'm working on a proximity app. The database contains longitude, latitude and a geohash of each item. The client supplies GPS coordinates to the server. The server then converts those coordinates to a ...
0
votes
0
answers
175
views
React google maps api autocomplete issue with selection via arrow keys
In React, I have an issue using autocomplete from the google maps api where selecting a location via up/down arrow keys in the dropdown menu followed by enter does not seem to select the location. ...
0
votes
0
answers
70
views
Can't render two markers at a same time @react-google-maps/api
I am having trouble while rendering multiple markers on the google map through the map function. One marker should render based on 'source' state and one should render based on destination state. When ...
1
vote
2
answers
108
views
Android Studio Project can't find file in raw folder
I am trying to style my map that i hace implemented in my application. The map is working fine, but when i tried to put a style on it, it produces an error.
These are the lines that are relevant to ...
1
vote
1
answer
336
views
DirectionsRenderer overwrite the Marker when rendering
I'm working on setting up a tracking system so customers can see where their deliveries are in real-time. I managed to setup for marker destination and pickup location along with route path toward it. ...
1
vote
1
answer
246
views
React Google Maps OverlayViewF not allowing descendants to be clicked
I'm trying to display an OverlayViewF from @react-google-maps/api in my map but it doesn't let me click on the div inside of it. I am using OverlayViewF instead of OverlayView to avoid the jittery-...