百度地图首次进入页面加载不出来,刷新页面后能正常显示,页面是通过预加载方式跳转。
var em=null,map=null;
// H5 plus事件处理
mui.plusReady(function(){
// 确保DOM解析完成
em=document.getElementById("map");
map = new plus.maps.Map("map");
console.log("map"+map);
map.showUserLocation( true );
setTimeout(function(){
map.getUserLocation(function(state,pos){
if(0==state){
map.setCenter(pos);
map.centerAndZoom(pos,16);
}
});
},300);
function resetMap(){
map.reset();
}
})
0 个回复