Reputation: 199
I am working on a website using TYPO3. I want to display a google map containing the location in my website. I used go_maps_ext extension from TYPO3 repository and followed the instructions from there to install it. I had no problem during installation. But google map donot appear on the frontend / website.
Any ideas regarding this, I am quite new to TYPO3. I already have the API key enabled for maps in my google account and I am using this API key in the root template as following
plugin.tx_gomapsext.settings.apiKey = "My API KEY".
Upvotes: 0
Views: 434
Reputation: 11
You must have this
plugin.tx_gomapsext.settings.apiKey = My API KEY
instead of this
plugin.tx_gomapsext.settings.apiKey = "My API KEY"
Upvotes: 0