gpt4 book ai didi

javascript - 无法查看 HTML 格式的 Google map ( Cordova )

转载 作者:行者123 更新时间:2023-12-02 16:53:58 24 4
gpt4 key购买 nike

我正在尝试在 Cordova 的 html 页面上显示 Google map 。我尝试复制的示例代码是:https://developers.google.com/maps/documentation/javascript/examples/map-simple?hl=it这是我的代码:HTML:

<!DOCTYPE html>

<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Hello World</title>
</head>
<body>
<div class="app">
<div id="map-canvas"></div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src=js/jquery-1.11.1.min.js></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script type="text/javascript" src="js/google_map.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>

index.js(我使用了一些alert()并且调用了每个方法)

var app = {

initialize: function() {
this.bindEvents();
},

bindEvents: function() {
document.addEventListener('deviceready', this.onDeviceReady, false);
},

onDeviceReady: function() {
toIndex();
}
};

$(document).ready( function(){
app.initialize();
});

function toIndex(){
google_map.init();
}

google_map.js负责 map 的类

var google_map = (function(){

var _map;
var _$map_canvas;

function init(){

_$map_canvas = $('.app').find('#map-canvas');

var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644)
};
_map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);

}

function getMap(){
return _map;
}

return {
init:init,
getMap:getMap
}
})();

和index.css文件

#map-canvas {
height: 100%;
margin: 0px;
padding: 0px

}

我看到的不是 map ,而是一个白页。

第二个问题:代码在这里:http://jsfiddle.net/qbddfdk7/1/这个也不起作用,问题出在第 14 行:如果我将其更改为

map = new google.maps.Map(map_canvas, mapOptions);

map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);

它会起作用,但我不明白为什么。

最佳答案

你的第二个问题的问题是时间问题。

你看,你的内联 JavaScript 位于 <head> 中,所以当时var map_canvas = document.getElementById('map-canvas');运行时,id 为 map-canvas 的元素尚未加载,所以var map_canvas设置为 null。

移动<script>标记到 <body> 的底部元素解决了这个问题。 I've updated your jsFiddle accordingly.

对于您的第一个问题,请尝试 Chrome Remote Debugging如果有的话,或 weinre 。这些将帮助您找到问题的根源。

关于javascript - 无法查看 HTML 格式的 Google map ( Cordova ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26336592/

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