使用cordova-plugin-google地图Ionic Framework显示空白屏幕

时间:2016-01-23 14:06:01

标签: cordova google-maps ionic-framework google-maps-api-2

我在我的离子应用程序中使用cordova谷歌地图的新手。当我在我的应用程序中使用此插件时会出现空白屏幕,如

blank screen

我按照cordova google maps plugin

中提到的一步一步跟进

为Android设备生成有效的Google地图API密钥

这是我工作的代码......

<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript">
var map;
document.addEventListener("deviceready", function() {
  var div = document.getElementById("map_canvas");

  // Initialize the map view
  map = plugin.google.maps.Map.getMap(div);

  // Wait until the map is ready status.
  map.addEventListener(plugin.google.maps.event.MAP_READY, onMapReady);
}, false);

function onMapReady() {
  var button = document.getElementById("button");
  button.addEventListener("click", onBtnClicked, false);
}

function onBtnClicked() {
  map.showDialog();
}
</script>
</head>
<body>
 <h3>PhoneGap-GoogleMaps-Plugin</h3>
 <div style="width:100%;height:400px" id="map_canvas"></div>
 <button id="button">Full Screen</button>
</body>
</html>

请帮助我。

0 个答案:

没有答案