更新时间:2019年07月26日 10时52分57秒 来源:黑马程序员论坛
一、引入依赖的库文件 // 设置地图背景色 import React, { Component } from 'react'; import Map from '../../component/map/map'; // 数据源 import { Vector as VectorSource } from 'ol/source'; // 图层 import { Vector} from 'ol/layer'; // 要素 import Feature from 'ol/Feature'; // import {Point} from 'ol/geom'; // 坐标系转化 import {fromLonLat} from 'ol/proj'; // 样式 import {Icon,Style,Text,Fill,Stroke} from 'ol/style'; // mark标注图片 import AddMarkerpng from '../../assets/Marker.png' 二、加载地图组件 render() { return ( <div > {/* <img src={bg}></img> */} <button onClick={this.addMarker}>点击开始添加标注</button> <Map ref="map" center={{ lon: 113.8, lat: 34.6 }} />; </div> ); } 三、地图的渲染和文字标注的添加 componentDidMount() { let {map} = this.refs.map //创建标注要素 let markFeature = new Feature({ // 几何信息 geometry: new Point(fromLonLat([116.28, 39.54])), // 名称属性 name: '标注点' }) //设置图标的样式 markFeature.setStyle(this.setMakerStyle(markFeature)) // 创建标注的数据源 var vectorSource = new VectorSource({ features: [markFeature] }); // 创建标注图层 var vectorLayer = new Vector({ source: vectorSource }); // 将标注图层添加到地图上 map.addLayer(vectorLayer); this.setState({ vectorSource }) } 四、全部代码 // 设置地图背景色 import React, { Component } from 'react'; import Map from '../../component/map/map'; // 数据源 import { Vector as VectorSource } from 'ol/source'; // 图层 import { Vector} from 'ol/layer'; // 要素 import Feature from 'ol/Feature'; // import {Point} from 'ol/geom'; // 坐标系转化 import {fromLonLat} from 'ol/proj'; // 样式 import {Icon,Style,Text,Fill,Stroke} from 'ol/style'; // mark标注图片 import AddMarkerpng from '../../assets/Marker.png' class AddMarkerLable extends Component { constructor(props){ super(props) this.state={ } } componentDidMount() { let {map} = this.refs.map //创建标注要素 let markFeature = new Feature({ // 几何信息 geometry: new Point(fromLonLat([116.28, 39.54])), // 名称属性 name: '标注点' }) //设置图标的样式 markFeature.setStyle(this.setMakerStyle(markFeature)) // 创建标注的数据源 var vectorSource = new VectorSource({ features: [markFeature] }); // 创建标注图层 var vectorLayer = new Vector({ source: vectorSource }); // 将标注图层添加到地图上 map.addLayer(vectorLayer); this.setState({ vectorSource }) } addMarker = ()=>{ let {map} = this.refs.map let that = this //鼠标单击事件 map.on('singleclick', function (e) { console.log(e) // alert("鼠标被单击了"+e.coordinate); that.addMakerOn(e.coordinate) }); } addMakerOn = (coordinate)=>{ //创建标注要素 let markFeature = new Feature({ // 几何信息 geometry: new Point(coordinate), // 名称属性 name: '标注点' }) //设置图标的样式 markFeature.setStyle(this.setMakerStyle(markFeature)) // 图标要素添加到数据源上 this.state.vectorSource.addFeature(markFeature) } setMakerStyle=(feature)=>{ return new Style({ text: new Text({ //位置 textAlign: 'center', //基准线 textBaseline: 'middle', //文字样式 font: 'normal 14px 微软雅黑', //文本内容 text: feature.get('name'), //文本填充样式(即文字颜色) fill: new Fill({ color: '#aa3300' }), stroke: new Stroke({ color: '#ffcc33', width: 2 }) }) }) } render() { return ( <div > {/* <img src={bg}></img> */} <button onClick={this.addMarker}>点击开始添加标注</button> <Map ref="map" center={{ lon: 113.8, lat: 34.6 }} />; </div> ); } } export default AddMarkerLable; 五、效果题 |
推荐了解热门学科
java培训 | Python人工智能 | Web前端培训 | PHP培训 |
区块链培训 | 影视制作培训 | C++培训 | 产品经理培训 |
UI设计培训 | 新媒体培训 | 产品经理培训 | Linux运维 |
大数据培训 | 智能机器人软件开发 |
传智播客是一家致力于培养高素质软件开发人才的科技公司,“黑马程序员”是传智播客旗下高端IT教育品牌。自“黑马程序员”成立以来,教学研发团队一直致力于打造精品课程资源,不断在产、学、研3个层面创新自己的执教理念与教学方针,并集中“黑马程序员”的优势力量,针对性地出版了计算机系列教材50多册,制作教学视频数+套,发表各类技术文章数百篇。
传智播客从未停止思考
传智播客副总裁毕向东在2019IT培训行业变革大会提到,“传智播客意识到企业的用人需求已经从初级程序员升级到中高级程序员,具备多领域、多行业项目经验的人才成为企业用人的首选。”
中级程序员和初级程序员的差别在哪里?
项目经验。毕向东表示,“中级程序员和初级程序员最大的差别在于中级程序员比初级程序员多了三四年的工作经验,从而多出了更多的项目经验。“为此,传智播客研究院引进曾在知名IT企业如阿里、IBM就职的高级技术专家,集中研发面向中高级程序员的课程,用以满足企业用人需求,尽快补全IT行业所需的人才缺口。
何为中高级程序员课程?
传智播客进行了定义。中高级程序员课程,是在当前主流的初级程序员课程的基础上,增加多领域多行业的含金量项目,从技术的广度和深度上进行拓展。“我们希望用5年的时间,打造上百个高含金量的项目,覆盖主流的32个行业。”传智播客课程研发总监于洋表示。
黑马程序员热门视频教程【点击播放】
Python入门教程完整版(懂中文就能学会) | 零起点打开Java世界的大门 |
C++| 匠心之作 从0到1入门学编程 | PHP|零基础入门开发者编程核心技术 |
Web前端入门教程_Web前端html+css+JavaScript | 软件测试入门到精通 |