Martin Schuhfuss
Martin Schuhfuss
I just received a notification from the issue tracking system that this has been solved in the latest maps API version: https://issuetracker.google.com/issues/356878392
As far as the new APIs are already supported in the Maps JavaScript API, they are supported in this library as well. For example to use the new `Place` class...
Yeah, the situation with the places API is very confusing at the moment. For autocomplete, a new version has just been published, see [here](https://developers.google.com/maps/documentation/javascript/place-autocomplete-data) and [here](https://developers.google.com/maps/documentation/javascript/reference/autocomplete-data?db=gems#AutocompleteSuggestion.fetchAutocompleteSuggestions). Those should also support...
As far as I understand it (I'm not a googler), the situation seems to be that google is in the process of rebuilding the places API services. Since the older...
I think this could also be caused by react excessively re-rendering the markers, which seems to be a big problem in all code based on the markerclusterer example. Will probably...
This is available: when using the Maps JavaScript API beta-version, you can set `headerDisabled={true}` on the InfoWindow component and provide your own content including a close button. (see https://visgl.github.io/react-google-maps/docs/api-reference/components/info-window#headerdisabled-boolean)
Understood. But without those API features there's very little we can do. You could probably add some styles to hide the default close-button and add your own in the content,...
I would argue that we do provide support for the geometry primitives, via the examples. The key Idea is that we want to use the examples to provide "ready-to-use" components...
Have a look at the [`app.jsx`](https://github.com/visgl/react-google-maps/blob/main/examples/geometry/src/app.tsx) file of our ['Geometry' Example](https://visgl.github.io/react-google-maps/examples/geometry). To use the `Polyline` component, you have to copy the code from [`./src/components/polyline.tsx`](https://github.com/visgl/react-google-maps/blob/main/examples/geometry/src/components/polyline.tsx) somewhere into your project and import...
> This whole "what's the problem with copy->pasting this component into your project?" is so silly... im sorry... Don't be sorry, not your fault :) I recommend starting by reading...