You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example that loads an Autocomplete Widget tries to load the Map class from the "places" library.
The example still works as intended because the Map class isn't required anywhere, so the"places" library is loaded anyway and then the PlaceAutocompleteElement class is referenced using the full namespace.
The guide is made to be easy enough for non-js gurus. Probably js-gurus don't even bother with the guides and read just the reference, but it took me a full day to understand what #L11 actually does, because I started with the assumption that the official documentation is always correct. Now I know better. :smi
Operating system
Windows 11
Browser Version
Firefox 127
How severe is the bug?
low
Bug description
This example that loads an Autocomplete Widget tries to load the
Map
class from the"places"
library.The example still works as intended because the
Map
class isn't required anywhere, so the"places"
library is loaded anyway and then thePlaceAutocompleteElement
class is referenced using the full namespace.The guide is made to be easy enough for non-js gurus. Probably js-gurus don't even bother with the guides and read just the reference, but it took me a full day to understand what #L11 actually does, because I started with the assumption that the official documentation is always correct. Now I know better. :smi
js-samples/dist/samples/place-autocomplete-element/docs/index.js
Lines 7 to 47 in ce94ea1
Steps to reproduce
Just run the JSFiddle example, to which I added a
console.log('Map: ',Map)
after the attempt to load theMap
class from the"places"
library is made.Console log output
"Map: ", undefined
The text was updated successfully, but these errors were encountered: