This repository was archived by the owner on Nov 30, 2018. It is now read-only.
This repository was archived by the owner on Nov 30, 2018. It is now read-only.
Spacing between library names when loading libraries with uiGmapGoogleMapApiProvider fails without warning #1782
Open
Description
Spacing/whitespace between the library names seems to prevent loading without any warnings.
e.g Seems to only load the geometry library:
uiGmapGoogleMapApiProvider.configure({
key: 'abcd',
libraries: 'geometry, places, drawing'
});
e.g Loads all three libraries:
uiGmapGoogleMapApiProvider.configure({
key: 'abcd',
libraries: 'geometry,places,drawing'
});