谷歌地图在我的网页上占用了div但没有显示

时间:2014-04-19 07:18:00

标签: jsp jquery-mobile servlets

我正在NetBeans(Servlet / JSP / mobile jQuery)中构建一个项目,我必须在Google Map上显示车辆的最后位置。现在,我在按钮点击上显示地图,这将显示在另一个JSP页面上。

地图划分发生了什么但没有显示地图,如果我将单独运行该页面作为右键单击的运行文件,则会显示Google Map。此外,如果删除jQuery for mobile并在不使用移动jQuery的情况下运行项目,它可以正确运行。

任何人都可以解释为什么会发生这种情况?

我要显示地图的JSP页面是:

<!DOCTYPE html>
<html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyDY0kkJiTPVd2U7aTOAwhc9ySH6oHxOIYM&sensor=false"></script>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css">
        <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
        <script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>


    </head>
    <body>
<script>
    $("div:jqmData(role='page'):last").bind('pageinit', function() {
            if(navigator.geolocation) {
                navigator.geolocation.getCurrentPosition(function(position){
                    initialize(position.coords.latitude,position.coords.longitude);
                });
            }
        }); `
            function initializemap()
            {
                var mapProp123 = {
                    center: new google.maps.LatLng(51.508742, -0.120850),
                    zoom: 5,
                    mapTypeId: google.maps.MapTypeId.ROADMAP
                };
                var map123 = new google.maps.Map(document.getElementById("googleMap123")
                        , mapProp123);
            }

        </script>

        <div data-role="main" class="ui-content">

                <p>I Am Now A Mobile Developer!!</p>
                <input type="button" value="get map" onclick="initializemap();">
                <div id="googleMap123" style="height: 300px;"></div>
            </div>


    </body>
</html>

1 个答案:

答案 0 :(得分:0)

将您的内容放在页面中:

<div id="firstPage" data-role="page">
    <div data-role="main" class="ui-content">
        <p>I Am Now A Mobile Developer!!</p>
        <input type="button" value="get map" onclick="initializemap();">
        <div id="googleMap123" style="height: 300px;"></div>
    </div>
</div>