Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
I get the above error when trying to add the drawing library to a modified GoogleExtensions widget:
<FileResource type="JS" url="https://maps.googleapis.com/maps/api/js?key=MY_KEY&libraries=drawing" description="" isDevelopment="false" isRuntime="true" />
I've also tried:
<FileResource type="JS" url="https://maps.googleapis.com/maps/api/js?key=MY_KEY&libraries=drawing" description="" isDevelopment="false" isRuntime="true" />
In this case, the extension gets imported fine, but then it the drawing library is not really loaded.
Thanks!
Cletus
Solved! Go to Solution.
Problem solved... URL needs to be
<FileResource type="JS" url="https://maps.googleapis.com/maps/api/js?key=MY_KEY&amp;libraries=drawing" description="" isDevelopment="false" isRuntime="true" />
Thanks!
Cletus
Problem solved... URL needs to be
<FileResource type="JS" url="https://maps.googleapis.com/maps/api/js?key=MY_KEY&amp;libraries=drawing" description="" isDevelopment="false" isRuntime="true" />
Thanks!
Cletus