代码实现
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>智慧校园</title>
<!-- 引入资源 -->
<!-- 引入css -->
<title>根据覆盖物调整显示范围</title>
<link rel="stylesheet" href="https://a.amap.com/jsapi_demos/static/demo-center/css/demo-center.css" />
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="https://cache.amap.com/lbs/static/main1119.css"/>
<!-- 引入js -->
<script type="text/javascript">
window._AMapSecurityConfig = {
securityJsCode:''//输入自己的key和密钥,
}
</script>
<script src="./js/store.js"></script>
<!-- 请确保你的API密钥是有效的,并且URL可以访问 -->
<script src="https://webapi.amap.com/maps?v=2.0&key=&plugin=AMap.GeoJSON"></script>
<style>
#mapContainer {
width: 100%;
height: 700px;
}
#overviewMapContainer {
width: 200px;
height: 150px;
position: absolute;
top: 10px;
right: 10px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<div id="container"></div>
<div class="info">点击地图标记地点</div>
<script>
var map =new AMap.Map('container',{
center:[118.916683,32.112189],
zoom:16,
viewMode:'3D',
pitch:45,
})
//使用控件
AMap.plugin(['AMap.ToolBar','AMap.Scale','AMap.ControlBar','AMap.HawkEye'],
function(){
map.addControl(new AMap.ToolBar())
map.addControl(new AMap.Scale())
map.addControl(new AMap.ControlBar())
map.addControl(new AMap.HawkEye())
}
)
//定义全局变量保存geojson
var geojson = new AMap.GeoJSON({
geoJSON:null,
})
//导入数据
if(JSON.stringify(getData())!='[]'){
geojson.importData(getData())
}
map.add(geojson)
//监听地图的点击事件
map.on('click',function(e){
var marker =new AMap.Marker({
position:e.lnglat,
})
//通过geojson对象来管理覆盖物,显示点
geojson.addOverlay(marker)
//保存数据(将geojson对象转换成标准的GeoJSON格式对象)
saveData(geojson.toGeoJSON())
})
//从localstroage中读取数据
function getData(){
if(!localStorage.getItem('geojson')){
localStorage.setItem('geojson','[]')
}
return JSON.parse(localStorage.getItem('geojson'))
}
//从localstorage中写数据
function saveData(data){
localStorage.setItem('geojson',JSON.stringify(data))
}
</script>
</body>
</html>
效果展示:
原文地址:https://blog.csdn.net/Ian1025/article/details/134757707
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_28182.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。