我使用HTML,JavaScript在Web应用程序上成功实现了Google地图。它在Android浏览器上运行良好。 但是在将此应用程序打包到本机Android应用程序中时,地图不会加载!以下是浏览器的代码。 当使用Cordova打包为本机应用程序时,没有结果和一个错误也表明未在第22行中定义未捕获的参考:谷歌。 请帮助我解决这个问题,在pacakging需要进行哪些修改! 谢谢!
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map-canvas { height: 100% }
</style>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDY0kkJiTPVd2U7aTOAwhc9ySH6oHxOIYM&sensor=false">
</script>
<script type="text/javascript">
function initialize() {
var mapOptions = {
center: new google.maps.LatLng(-34.397, 150.644),
zoom: 8
};
var map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"/>
</body>
</html>