作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Adobe phonegap 构建站点并尝试创建一个非常基本的单页 html 以利用 Google Maps API,不幸的是它不起作用。它只生成一个空白的白页。
我的索引 html...
<!DOCTYPE html>
<html style="height:100%">
<head>
<script src="lib/maps.js"></script>//I have copied the Google maps JS locally
</script>
<script>
function initialize() {
alert("Initialize called...");
var mapProp = {
center:new google.maps.LatLng(51.508742,-0.120850),
zoom:5,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
alert("Map props loaded...");
var map=new google.maps.Map(document.getElementById("googleMap"), mapProp);
alert("The div innerHTML"+document.getElementById("googleMap").innerHTML);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body style="height: 100%; margin: 0; padding: 0">
<div id="googleMap" style="height:200px;position:relative;"></div>
</body>
</html>
我的 phonegap config.xml...
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "org.aninda.areyouclose"
versionCode = "10"
version = "1.1.0">
<name>Test App</name>
<description>
Test
</description>
<author href="http://www.aninda-bhattacharyya.com" email="aninda@gmail.com">
Aninda Bhattacharyya
</author>
<feature name="http://api.phonegap.com/1.0/camera"/>
<feature name="http://api.phonegap.com/1.0/contacts"/>
<feature name="http://api.phonegap.com/1.0/file"/>
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/media"/>
<feature name="http://api.phonegap.com/1.0/network"/>
<feature name="http://api.phonegap.com/1.0/notification"/>
<icon src="icon.png" />
<icon src="icon.png" gap:platform="android" density="ldpi" />
<icon src="icon.png" gap:platform="android" density="mdpi" />
<icon src="icon.png" gap:platform="android" density="hdpi" />
<icon src="icon.png" gap:platform="android" density="xhdpi" />
<access origin="googleapis.com" subdomains="true"/>
</widget>
我现在已经敲了8个多小时的脑袋了。请帮忙!
最佳答案
想在弄清楚问题所在后回答我自己的问题。错过了在 config.xml
中包含 cordova 白名单插件。添加了以下行,瞧...
<gap:plugin name="com.indigoway.cordova.whitelist.whitelistplugin" version="1.1.1" />
关于javascript - Google map API 不适用于 PhoneGap - 生成空白页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33702280/
我是一名优秀的程序员,十分优秀!