gpt4 book ai didi

android - PhoneGap + JQuery Mobile + Google map v3 : map shows Top Left tiles?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:05:28 24 4
gpt4 key购买 nike

我有一个 PhoneGap 应用程序,它使用 JQuery Mobile 在页面之间导航。

当我从主页导航到包含 Google map 的页面时, map 在左上角一次只显示一个图 block ,如下所示: enter image description here

这可能是什么原因?

**

Source Code: The following script is in the head of my page

<script>
$(document).on("pageinit", "#stores", function () {
var centerLocation = new google.maps.LatLng('57.77828', '14.17200');

var myOptions = {
center: centerLocation,
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP,
callback: function () { alert('callback'); }
};

map_element = document.getElementById("map_canvas");




map = new google.maps.Map(map_element, myOptions);

var mapwidth = $(window).width();
var mapheight = $(window).height();
$("#map_canvas").height(mapheight);
$("#map_canvas").width(mapwidth);
google.maps.event.trigger(map, 'resize');

});
</script>

我的页面是这样的

<!-- Home -->
<div data-role="page" id="home">
.
.
.
</div>

<div data-role="page" id="stores">
<div data-role="content" id="map_canvas"></div>
</div>

我像这样从主页导航到 map 页面:

<a href="#stores">Stores</a>

Update after applying Gajotres solution the tiles become like this enter image description here

最佳答案

简介

较新版本的 jQuery Mobile 和 Google Maps v3 有点特别。

您的第一个问题是使用 pageinit 事件进行计算。那时您无法获得正确的页面高度和宽度。因此,请改用 pageshow,您会发现它在我的示例中有效。

在显示 map 之前,您需要调整其内容 DIV 的大小。这是因为内容 div 将根据可用的内部元素调整大小。所以我们需要通过 javascript 或 CSS 手动修复这个问题。我已经对这个问题有了答案:google map not full screen after upgrade to jquerymobile 1.2但我也可以向您展示一个工作示例:

工作示例

工作 jsFiddle 示例:http://jsfiddle.net/Gajotres/GHZc8/ (Javascript 解决方案,CSS 解决方案可以在底部链接中找到)。

代码

HTML

<!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" id="index">
<div data-theme="a" data-role="header">
<h3>
First Page
</h3>
</div>

<div data-role="content" id="content">
<div id="map_canvas" style="height:100%"></div>
</div>

<div data-theme="a" data-role="footer" data-position="fixed">
<h3>
First Page
</h3>
</div>
</div>
</body>
</html>

Javascript

这是一个用于计算正确页面高度的函数:

   $('#map_canvas').css('height',getRealContentHeight());

function getRealContentHeight() {
var header = $.mobile.activePage.find("div[data-role='header']:visible");
var footer = $.mobile.activePage.find("div[data-role='footer']:visible");
var content = $.mobile.activePage.find("div[data-role='content']:visible:visible");
var viewport_height = $(window).height();

var content_height = viewport_height - header.outerHeight() - footer.outerHeight();
if((content.outerHeight() - header.outerHeight() - footer.outerHeight()) <= viewport_height) {
content_height -= (content.outerHeight() - content.height());
}
return content_height;
}

另一种解决方案

这个问题还有另一种解决方案,它只使用 CSS,可以找到 HERE 。我更喜欢这个解决方案,因为它不需要 javascript 来正确修复 map 高度。

CSS:

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

最后一件事

此外,如果页面宽度仍然不正确,只需将其设置为 100%:

$('#map_canvas').css('width', '100%');

关于android - PhoneGap + JQuery Mobile + Google map v3 : map shows Top Left tiles?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16038562/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com