Thanks for your help. I ended up doing things a bit manually by making a slight modification to the file “event-map.twig” which is in the location “all-in-one-event-calendar/public/themes-ai1ec/vortex/twig/event-map.twig”. Inside the div container of class “ai1ec-gmap-container”, I added the following code:
<iframe width="200" height="200" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q={{address}}&key=your_Google_API_key_here" allowfullscreen></iframe>
Make sure to insert your API key in the “key” parameter of the mentioned code (yes, I ended up hardcoding my key). Also, I believe you can erase/comment-out the following code:
<div id="ai1ec-gmap-canvas"></div>
<input type="hidden" id="ai1ec-gmap-address" value="{{ address | e('html_attr') }}" />
<a class="ai1ec-gmap-link ai1ec-btn ai1ec-btn-primary ai1ec-btn-xs ai1ec-tooltip-trigger"
href="{{ gmap_url_link | e('html_attr') }}" target="_blank"
title="{{ text_full_map }}"
data-placement="bottom">
<i class="ai1ec-fa ai1ec-fa-search-plus ai1ec-fa-lg"></i>
</a>
-
This reply was modified 7 years, 7 months ago by great-taste.