TypeError:this.K is undefined

1、错误描述



2、错误原因

<!DOCTYPE html>
<html>
  <head>
    <title>设置地图最小、最大级别</title>
	
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
	<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=ak密钥"></script>
	<style>
		body{
		   width: 100%;
		   height: 100%;
		   overflow: hidden;
		   font-family: "微软雅黑";
		   margin: 0;
		}
		#minMaxMap{
		   width: 100%;
		   height: 100%;
		   margin: 0;
		}
	</style>

  </head>
  
  <body>
     <div id="minMaxMap"></div>
  </body>
</html>
<script>
    var map = new BMap.Map("mixMaxMap",{minZoom:1,maxZoom:12});
    map.centerAndZoom(new BMap.Point(114.309531, 30.59619),18); 
	map.enableScrollWheelZoom(true);
</script>

3、解决办法

<!DOCTYPE html>
<html>
<head>
<title>设置地图最小、最大级别</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=ak密钥"></script>
<style>
	body,html,#allmap {
		width: 100%;
		height: 100%;
		overflow: hidden;
		margin: 0;
		font-family: "微软雅黑";
	}
</style>

</head>
<body>
	<div id="allmap"></div>
</body>
</html>
<script type="text/javascript">
    //minZoom:设置地图允许的最小级别,maxZoom:设置地图允许的最大级别
	var map = new BMap.Map("allmap", {
		minZoom : 1,
		maxZoom : 18
	}); 
	//初始化地图,设置武汉城市
	map.centerAndZoom(new BMap.Point(114.309531, 30.59619), 6);
	//启用滚轮放大缩小
	map.enableScrollWheelZoom(true);
	//禁用地图拖拽
	map.disableDragging(true);
	//禁用滚轮放大缩小
	map.disableScrollWheelZoom(true);
	//启用键盘操作
	map.enableKeyboard(true);
</script>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值