I have an inherited site using Umbraco cms and angularjs. I am getting an issue with a google map component, the call looks like:
assetsService.loadJs('https://www.google.com/jsapi?key=mykey')
.then(function () {
google.load('maps', '3',
{
callback: initMap,
other_params: 'libraries=places&sensor=false'
});
});
mykey obviously is not my actual key, the actual key is an unrestricted one that I have created. I still get NoApiKeys error.
Is it because the URL I am calling is no longer supported?