为什么不能删去marker1?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.11&key=e22196035aaa10db3b0b6eb1ab64619e&plugin=AMap.Autocomplete"></script>
<style type="text/css">
* {
margin: 0;
padding: 0;
list-style: none;
}
#container {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
.amap-icon img {
width: 25px;
height: 34px;
}
</style>
</head>
<body>
<div id="container"></div>
<script type="text/javascript">
var map = new AMap.Map('container', {
center: [116.379391, 39.861536],
zoom: 11
});
map.setDefaultCursor('-webkit-grabbing');
var marker = new AMap.Marker({
icon: 'https://a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',
position: [116.379391, 39.861536]
});
marker.setMap(map);
map.on('click', function(e) {
var markerIcon = new AMap.Icon({
size: new AMap.Size(610, 610),
image: './1.png',
imageSize: new AMap.Size(30, 30)
});
var marker1 = new AMap.Marker({
icon: markerIcon,
position: [e.lnglat.lng, e.lnglat.lat],
offset: new AMap.Pixel(-15, -25) //调整点击位置与标记的偏差
});
map.remove([marker, marker1]);
map.add(marker1);
});
</script>
</body>
</html>
为什么只能删去marker而不能删去marker1?
正在回答 回答被采纳积分+1
- 参与学习 人
- 提交作业 622 份
- 解答问题 6815 个
微信带火了小程序,也让前端工程师有了更多的展现机会,本阶段带你从移动基础知识的学习到webAPP开发,及小程序开发,让你PC端与移动端两端通吃。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星