google maps not displayed correctly unless refreshing

后端 未结 3 1568
天涯浪人
天涯浪人 2021-01-13 18:57

I am using JQuery mobile with the Google Map API. The map is not displayed properly unless I refresh the page and I don\'t understand why.

here is my map.html file:<

相关标签:
3条回答
  • 2021-01-13 19:09

    There's a trick how google maps v3 framework can be easily implemented with jQuery Mobile.

    Lets talk about the problems here. your content div has a height and width problem, mainly because only time page dimensions can be calculated correctly is during the pageshow event. But even then content div will not cover full page.

    Your problem can be solved with a little bit of CSS :

    #content {
        padding: 0 !important;
        position : absolute !important; 
        top : 40px !important;  
        right : 0 !important; 
        left : 0 !important;     
        height: 200px !important;
    }
    

    Basically you are forcing your content to cover available space.

    Working example: http://jsfiddle.net/RFNPt/2/

    Final solution :

    index.html

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8" />
            <meta name="viewport" content="width=device-width, initial-scale=1"/>
            <script src="http://maps.google.com/maps/api/js?sensor=true"></script>      
            <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
            <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> 
            <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script> 
            <title>MyTitle</title>
        </head>
        <body> 
            <div data-role="page" class="page"> 
                <div data-role="content" id="index-content">
                    <div id="menu">
                        <a href="map.html" data-role="button" target="_blank">Map</a>
                    </div> 
                </div> 
            </div> 
        </body> 
    </html>
    

    map.html

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8" />
            <meta name="viewport" content="width=device-width, initial-scale=1"/>
            <script src="http://maps.google.com/maps/api/js?sensor=true"></script>      
            <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
            <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> 
            <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script> 
            <title>MyTitle</title>
        </head>
        <body>
            <div data-role="page" id="map-page">            
                <div data-role="content" id="content">
                    <div id="canvas-map" style="height:100%"/>
                </div>      
                <style>
                    #content {
                        padding: 0 !important; 
                        position : absolute !important; 
                        top : 0 !important; 
                        right : 0 !important; 
                        bottom : 40px !important;  
                        left : 0 !important;     
                    }       
                </style>            
                <script type="text/javascript">         
                    $(document).on('pageshow', '#map-page', function(e, data) {
                        var marker, map, 
                            myLocation = { 
                                lat: 50, 
                                lon: -80 
                            }, 
                            mapOptions = { 
                                zoom: 5, 
                                mapTypeId: google.maps.MapTypeId.PLAN, 
                                center: new google.maps.LatLng(myLocation.lat, myLocation.lon) 
                            }; 
                        $('#canvas-map').css("height", "200px").css("padding", "0px"); 
                        map = new google.maps.Map(document.getElementById('canvas-map'), mapOptions); 
                        marker = new google.maps.Marker({ 
                            map: map, 
                            position: new google.maps.LatLng(myLocation.lat, myLocation.lon), 
                        });     
                    }); 
                </script>           
            </div>
        </body>
    </html>
    

    If you take a look at this ARTICLE you will find much more information regarding this topic plus examples.

    0 讨论(0)
  • 2021-01-13 19:18

    Try to add following code...

    $('#canvas-map').on('pageshow', function(){
        google.maps.event.trigger(canvas-map, "resize");
    });
    

    this will fire resize event and reload the map on your page.

    0 讨论(0)
  • 2021-01-13 19:23

    Just for completeness: The action of drawing the map should be performed after the page loads, that is when the page has actual values for width and height and you can initialize it as follows:

    var map; //declared as global so you can access the map object and add markers dynamically 
    $("#canvas-map").on( "pageshow", function() {
        var mapProp = {
                center:new google.maps.LatLng(53.6721226, -10.547924),
                zoom:13,
                mapTypeId:google.maps.MapTypeId.ROADMAP
              };
        map=new google.maps.Map(document.getElementById("map-canvas"),mapProp);
    });
    

    No refresh needed

    0 讨论(0)
提交回复
热议问题