You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
when i click on line where google maps api is included, it doesn't load it, even if i call script tag in that container div.
How can i do this ?
example eventill.com/calendar and then click on logo, map at bottom is not loaded, and loading spinner is still there.
The text was updated successfully, but these errors were encountered:
Hi. Google maps will load if you include it properly. I this there are some other errors on your page that is preventing google maps from execution.
In pjax partial html response you can have something like this, and it should work..
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
// This must be executed after DOM ready
$(document).ready(function() {
var map;
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map_canvas'),mapOptions);
});
</script>
Hi,
when i click on line where google maps api is included, it doesn't load it, even if i call script tag in that container div.
How can i do this ?
example eventill.com/calendar and then click on logo, map at bottom is not loaded, and loading spinner is still there.
The text was updated successfully, but these errors were encountered: