99.在 Vue 3 中使用 OpenLayers 配置 Icon 和 Text 标注

打印 上一主题 下一主题

主题 980|帖子 980|积分 2940

在前端 GIS 开辟中,OpenLayers 是一款强盛且开源的舆图库,能够轻松实现 Web 端的舆图渲染和交互操纵。本文将基于 Vue 3,先容如安在 OpenLayers 中使用 Icon(图标)Text(文本标注),并具体解析参数配置。

1. 环境准备

在 Vue 3 项目中使用 OpenLayers,须要先安装依赖:
npm install ol
假如你的项目是基于 Vite 构建的,默认支持 ESM 方式引入,无需额外配置。

2. 创建 OpenLayers 舆图

我们先初始化 OpenLayers 舆图,并在 onMounted 钩子中执行渲染逻辑。
完整代码

  1. <!--
  2. * @Author: 彭麒
  3. * @Date: 2025/3/11
  4. * @Email: 1062470959@qq.com
  5. * @Description: 此源码版权归吉檀迦俐所有,可供学习和借鉴或商用。
  6. -->
  7. <template>
  8.   <div class="container">
  9.     <div class="w-full flex justify-center">
  10.       <div class="font-bold text-[24px]">在Vue3中使用OpenLayers配置Icon和text的参数</div>
  11.     </div>
  12.     <div id="vue-openlayers"></div>
  13.   </div>
  14. </template>
  15. <script setup>
  16. import { onMounted, ref } from "vue";
  17. import "ol/ol.css";
  18. import { Map, View } from "ol";
  19. import TileLayer from "ol/layer/Tile";
  20. import VectorLayer from "ol/layer/Vector";
  21. import VectorSource from "ol/source/Vector";
  22. import OSM from "ol/source/OSM";
  23. import Feature from "ol/Feature";
  24. import { Point } from "ol/geom";
  25. import { Circle, Fill, Icon, Stroke, Style, Text } from "ol/style";
  26. const map = ref(null);
  27. const dataSource = new VectorSource({ wrapX: false });
  28. const showPoint = () => {
  29.   const iconFeature = new Feature({
  30.     geometry: new Point([116, 39]),
  31.   });
  32.   const iconStyle = new Style({
  33.     image: new Icon({
  34.       rotation: 45,
  35.       crossOrigin: "anonymous",
  36.       anchor: [0.5, 1.5],
  37.       scale: 0.1,
  38.       src: new URL("@/assets/OpenLayers/beijing.png", import.meta.url).href,
  39.     }),
  40.     text: new Text({
  41.       text: "cuclife",
  42.       anchor: [0.5, 1.5],
  43.       rotation: 50,
  44.       font: "bold 20px Arial, sans-serif",
  45.       textAlign: "right",
  46.       offsetX: -50,
  47.       offsetY: 20,
  48.       fill: new Fill({
  49.         color: "red",
  50.       }),
  51.       stroke: new Stroke({
  52.         color: "white",
  53.         width: 2,
  54.       }),
  55.     }),
  56.   });
  57.   const pointStyle = new Style({
  58.     image: new Circle({
  59.       radius: 7,
  60.       fill: new Fill({
  61.         color: "red",
  62.       }),
  63.       stroke: new Stroke({
  64.         color: "blue",
  65.         width: 1,
  66.       }),
  67.     }),
  68.   });
  69.   iconFeature.setStyle([pointStyle, iconStyle]);
  70.   dataSource.addFeature(iconFeature);
  71. };
  72. // 初始化地图
  73. const initMap = () => {
  74.   const OSM_Layer = new TileLayer({
  75.     source: new OSM(),
  76.   });
  77.   const feature_Layer = new VectorLayer({
  78.     source: dataSource,
  79.   });
  80.   map.value = new Map({
  81.     target: "vue-openlayers",
  82.     layers: [OSM_Layer, feature_Layer],
  83.     view: new View({
  84.       projection: "EPSG:4326",
  85.       center: [116, 39],
  86.       zoom: 14,
  87.     }),
  88.   });
  89. };
  90. onMounted(() => {
  91.   initMap();
  92.   showPoint();
  93. });
  94. </script>
  95. <style scoped>
  96. .container {
  97.   width: 840px;
  98.   height: 570px;
  99.   margin: 50px auto;
  100.   border: 1px solid #42B983;
  101. }
  102. #vue-openlayers {
  103.   width: 800px;
  104.   height: 450px;
  105.   margin: 0 auto;
  106.   border: 1px solid #42B983;
  107.   position: relative;
  108. }
  109. </style>
复制代码

4. 运行效果

终极效果如下: ✅ 舆图居中在北京添加了赤色圆点显示图标(beijing.png),并带有旋转笔墨“北京”赤色显示,白色描边


5. 结语

通过本文,我们学习了: ✔ 在 Vue 3 项目中集成 OpenLayers
✔ 如何使用 Icon 配置舆图标注
✔ 如安在 OpenLayers 中添加 Text 并调解样式
希望这篇文章能帮助你更好地把握 OpenLayers,欢迎交流讨论!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

宝塔山

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表