cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community email notifications are disrupted. While we are working to resolve, please check on your favorite boards regularly to keep up with your conversations and new topics.

Google Maps not loading correctly (API Key added) ThingWorx 7.2

kpashov
1-Newbie

Google Maps not loading correctly (API Key added) ThingWorx 7.2

Hello,

I have been getting this error despite me adding the Google Maps API key under ThingWorx 7.2. I have added the Google Maps API key into the extension metadata and updated it. I can see that the value has changed under .../tomcat/webaps/thingworx/Runtime/index.html. The new API key is there. I have also tried calling the url from curl- it also works.


<FileResource type="JS" url="https://maps.google.com/maps/api/js?key=<apikey>;sensor=false" description="" isDevelopment="false" isRuntime="true" />

I am NOT seeing any calls to google Maps with my API key.

This page didn't load Google Maps correctly. See the JavaScript console for technical details.

1 ACCEPTED SOLUTION

Accepted Solutions

I solved the problem by changing:

<FileResource type="JS" url="https://maps.google.com/maps/api/js?key=<apikey>;sensor=false" description="" isDevelopment="false" isRuntime="true" />


to


<FileResource type="JS" url="https://maps.google.com/maps/api/js?key=<apikey>" description="" isDevelopment="false" isRuntime="true" />

The sensor=false part needs to be removed to make the maps function.

View solution in original post

1 REPLY 1

I solved the problem by changing:

<FileResource type="JS" url="https://maps.google.com/maps/api/js?key=<apikey>;sensor=false" description="" isDevelopment="false" isRuntime="true" />


to


<FileResource type="JS" url="https://maps.google.com/maps/api/js?key=<apikey>" description="" isDevelopment="false" isRuntime="true" />

The sensor=false part needs to be removed to make the maps function.

Top Tags