我正在使用phonegap开发移动应用。我想开发它的在线版和离线版。在线版本中,应用程序连接到谷歌地图API,在离线版本中,它应该跳过加载地图并继续加载其余的页面元素。如何检查与Google地图API的连接。
我有以下功能来加载地图:
function initialize() {
var myLatlng = new google.maps.LatLng(98,-33);
var mapOptions = {
zoom: 11,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'marker'
});
var infowindow = new google.maps.InfoWindow({
content: "<div style='width:80px;'>Your Location</div>",
minWidth: 500
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
}
google.maps.event.addDomListener(window, 'load', initialize);
当我在有互联网连接的情况下运行应用程序时,它运行正常,但是当没有连接时,它会给出错误“Google未定义”并且它也不会加载页面。请告诉我们如何检查连接。我尝试使用navigator.onLine,但没用。谢谢!
答案 0 :(得分:1)
由于您提到了PhoneGap
,我建议您使用PhoneGap提供的 Network Connection API 。
它可以帮助您快速检查网络状态和蜂窝状态 网络信息。
您可以在answer
中简单地检查@DaveS所述的检查if (typeof google === 'object' && typeof google.maps === 'object') {
// Google maps loaded
initialize();
} else {
// Failed to load the Google Maps
}
答案 1 :(得分:0)
你可以这样做:
<script type="text/javascript" onload="loaded()" src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
function loaded(){
//this will only execute if the page loads
}