更新弹层标记的popup内容
![](https://box.kancloud.cn/822160090d36119cb49f1c6e719d47cb_456x276.gif)
```
// 随机生成坐标
function generateRandomCoord(type) {
switch (type) {
case 'w': // 世界
return [Math.random() * 180 - Math.random() * 180, Math.random() * 90 - Math.random() * 90];
break;
case 's': // 特定范围
return [103 + Math.random() * (108 - 103), 22 + Math.random() * (25 - 22)];
default: // 中国
return [74 + Math.random() * (135 - 74), 1 + Math.random() * (53 - 1)];
break;
}
}
require([
'esri/Map',
'esri/views/MapView',
'esri/Graphic',
'esri/geometry/Point'
], function(Map, MapView, Graphic, Point) {
var map = new Map({
basemap: 'streets'
});
var mapView = new MapView({
map: map,
center: [102.9331224074, 25.1049040686],
zoom: 6,
container: 'js_map'
});
// 点
var pointGraphicArr = [];
for (var i = 0; i < 3; i++) {
var coord = generateRandomCoord('s');
var pointGraphic = new Graphic({
attributes: {
id: 'point_'+i // 主要就是匹配标记id
},
geometry: {
type: "point",
longitude: coord[0],
latitude: coord[1]
},
symbol: {
type: "simple-marker",
color: [226, 119, 40],
outline: {
color: [255, 255, 255],
width: 2
}
},
popupTemplate: {
overwriteActions: true, // 覆盖action,关闭弹层缩放
title: "自定义弹层标题"+i,
content: '<div style="padding: 20px;border: 1px solid #333;font-size: 14px;color: #f00;">Hello ArcGis地图.</div>'
}
});
pointGraphicArr.push(pointGraphic);
}
mapView.graphics.addMany(pointGraphicArr);
setTimeout(function() {
if(mapView.popup.visible) {
var pointMarker = mapView.popup.features[0], // 弹层标记
pointId = pointMarker.attributes.id,
coord = [pointMarker.geometry.longitude, pointMarker.geometry.latitude];
mapView.graphics.items.forEach(function(v) {
var id = v.attributes.id;
if(id === pointId) {
mapView.popup.open({
overwriteActions: true,
title: "自定义弹层标题",
content: '<div style="padding: 20px;border: 1px solid #333;font-size: 14px;color: #177D0B;">Hello ArcGis地图.</div>',
location: coord
});
}
});
}
}, 5000);
});
```
- 事件
- mouse缩放与拖动
- drag拖动
- 事件兼容
- animation/transition
- canvas
- 改变图片颜色
- html转图片
- 视频操作
- 图片缩放、水印、放大镜
- 虚线
- 圆环进度条
- 形状事件
- 圆角矩形
- 绘制注意
- arcTo与贝塞尔
- 椭圆及椭圆进度
- 五角星进度
- 常用图形
- 计算显示文本宽度
- 算法
- 几何算法
- 地图应用相关
- 运行符
- web安全
- 新窗口打开
- xss
- 分享交流
- php环境搭建及xhr交互
- node环境搭建及xhr交互
- node之socketio
- svg之入门介绍
- svg动画
- vue之搜索联想
- vue之登录和echarts
- vue之组件交互与slot
- vue之loading
- vue之上传进度
- webpack及cli
- 开发技巧
- 常用
- 移动端
- 错误处理
- 预加载
- 代理判断
- 数组扩展
- 对象扩展
- 字符串扩展
- 语音播报
- 收集
- 文章/日记
- 框架/库/插件
- 工具
- 学习网站
- 专业术语
- 正则
- 常用验证
- 方法基础
- es6扩展
- 深入实践
- 快捷使用
- html
- css
- http协议
- http
- https
- socket
- 地图/图表
- mapbox
- echarts
- arcgis
- MapView及事件
- 添加WMS/WMTS层
- 增删点线面
- 入门使用
- popup弹层
- 大数据处理
- 批量点
- 批量线
- 在线绘制
- GraphicLayer显示/隐藏
- 动态改变位置
- 去除版权信息
- 添加控件
- Symbol
- 自定义path标记
- 图片标记
- 文本标记
- 旋转
- UI
- 自定义
- 3D地图
- 创建实例
- basemap
- 底图切换
- 自定义底图
- 中心和范围
- pupup弹层更新
- 坐标转换
- 方向线
- leaflet
- amap
- 框架/类库/脚手架
- vue
- 常见问题
- 组件框架
- vue-router
- 命名视图
- url参数映射到prop
- sublime支持
- 随手记
- 常用功能
- threejs
- 常用效果
- 其他特效
- requirejs
- 简单使用
- jquery
- 方法扩展
- 使用笔记
- 组件扩展
- react
- 党见问题
- 学习笔记
- 学习笔记-进阶
- react-redux
- react-router
- redux
- 其他模块说明
- 组件框架
- sublime支持
- gulp
- 安装使用
- js压缩
- css压缩
- 组合使用
- copy文件
- 项目使用
- protobuf
- 入门
- layui
- 登录验证
- laydate
- 安装工具
- yarn
- reactNative
- 入门介绍
- vueNative
- 入门介绍
- 版本控制
- git常用
- git扩展
- git问题
- git其他
- git扩展2
- 编辑器
- vscode
- atom
- webstorm
- 插件
- clipboard
- 奇淫巧技
- js
- 个性打印
- css
- 滤镜效果
- 文本省略
- 当前色
- 新特性
- 花样边框效果
- 波纹效果
- 个性placeholder
- 伪元素内容
- 容器居中
- 知识点
- js
- 递归
- 沙箱
- 内存泄漏
- es6语法
- 变量介绍
- FileRead
- ajax
- web存储
- css
- rem布局