We have an issue with the Google Maps data type. We use version 4.7 of umbraco, and our Google Maps plug in stopped working recently, this initially seemed to be down to our HTTPS site trying to connect to a HTTP site, we replaced our package (which was version 2.0) with version 2.1 which resolved that initial issue.
However we are now getting an issue with the API key, we signed up for an browser API key and inserted that into our website templates code, but we are still getting an error "MissingKeyMapError":
I was able to fix this. I downloaded the package source, and there's a .JS file where he loads the google maps javascript api, you can add the key there.
We started getting this error with the 2.1 version of this package which is using v3 of the Google API.
Don't know if Google changed some stuff, but it seems that the API key is now needwed to use the API :(
We do have an API key that we use on the frontend of the site, but I can't see where I can add it in the back office for this package. Anyone knows how this can be solved?
Google Maps Plug In Stopped Working
We have an issue with the Google Maps data type. We use version 4.7 of umbraco, and our Google Maps plug in stopped working recently, this initially seemed to be down to our HTTPS site trying to connect to a HTTP site, we replaced our package (which was version 2.0) with version 2.1 which resolved that initial issue.
However we are now getting an issue with the API key, we signed up for an browser API key and inserted that into our website templates code, but we are still getting an error "MissingKeyMapError":
type="text/javascript">
Having the same problem here, when I try to search for a location, I get this error message:
"Your search didn't return any results"
I tried creating an API Key and putting it the header, but no luck
Same here. Any ideas?
I was able to fix this. I downloaded the package source, and there's a .JS file where he loads the google maps javascript api, you can add the key there.
Thanks - found it as well.
Where do i find this js file to update? I downloaded the zip file which has no js file. I've searched my site which has a lot of js files?
Any chance that the plugin will get updated? A config setting or similar would be nice.
We started getting this error with the 2.1 version of this package which is using v3 of the Google API. Don't know if Google changed some stuff, but it seems that the API key is now needwed to use the API :( We do have an API key that we use on the frontend of the site, but I can't see where I can add it in the back office for this package. Anyone knows how this can be solved?
/Kim
Had to solve it for one of the old Umbraco 4.11 website. Follow the steps below if anyone else is looking for solution
key: UmbracoGoogleMap.apiKey,
to
key: "YOUR_APIKEY_GENERATED_FROM_GOOGLE" ,
@Ansar Thank you, its worked!
is working on a reply...