Martin Schuhfuss
Martin Schuhfuss
If you want to move to Places API (new), you can just start by using the new `Place` class as mentioned by @wangela above. Nothing in way you're loading the...
It's a bit tricky since the google maps API will typically not be available in your tests. For that, but you can use [googlemaps/js-jest-mocks](https://github.com/) to some extent. As for the...
As soon as the maps-API is loaded, the Wrapper component is reduced to `return {children}`, in which case it won't benefit from memoization ([here's a bit more explanation of this](https://gist.github.com/slikts/e224b924612d53c1b61f359cfb962c06))....
duplicate in #974
Thanks a lot for the quick response! I tried that, and first got the following error: ``` (rpt2 plugin) Error: [...]: semantic error TS2307: Cannot find module '[...]' or its...
This seems to be the reason: https://github.com/googlemaps/google-maps-services-js/blob/44ed812c133cee94a12d399af902b4f4173356be/src/serialize.ts#L27-L45 Treating `undefined` and `null` like an empty string should be a good solution here.
Hey @ABuffSeagull, this module is very likely free of sideEffects per the webpack definition: > A "side effect" is defined as code that performs a special behavior when imported, other...
Just from a quick search, it doesn't look like the [StreetViewService](https://developers.google.com/maps/documentation/javascript/streetview#StreetViewService) has any officially supported REST API that we could implement in this library. That could be missing documentation or...
That issue doesn't affect our library at all and only applies for usage of axios in the browser. However, we will still update to newer versions of axios as they...
/cc @wangela @chrisjshull