-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Googlemaps breaks curtain... #32
Comments
if the GoogleMap is in a curtain section that is not initially displayed, you have to wait to initialize the map. You can check for this using the nextSlide callback. In my case, the curtains worked but the map would not display correctly. |
initiate your map like this //this will also keep ur map in place //yes i know its been 8 months since you asked |
I have already found good alternatives:) Thnx for the reply anyways, but as On Wed, Aug 21, 2013 at 9:29 PM, mymlyn [email protected] wrote:
|
When implementing googlemaps on my basic curtain-based site, the page starts acting weird. The script doesn't go to the right anchors and the pages are losing background images etc.
This is what i'm using to implement my googlemaps.
<script type="text/javascript"> function initialize() { var myLatlng = new google.maps.LatLng(52.37659, 4.88747); var mapOptions = { zoom: 16, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions); } </script>The text was updated successfully, but these errors were encountered: