OpenLayer4加载svg

Stella981
• 阅读 717

关于加载svg 的代码,网上是少之又少,牛老师博客倒是有,但是只是核心代码,并没有给出完整的demo,而且核心代码中有个问题对于这个ol渲染不太理解的话的话应该做不出来效果,就是关于坐标转屏幕坐标的问题,必须需要地图渲染完成之后才能拿到否则没法转换,得出转换为空的结果。

放个图:

OpenLayer4加载svg

一、原理

通过静态加载图片的方式加载svg,给定初始化范围,更重要的是给定imageSize,关于imageSize是通过给定的范围求出图片的大小,用xmax-xmin得到宽度,用ymax-ymin得出来高度,作为imageSize的值。

介绍一个小知识关于3857和4326的:

1、'EPSG:4326'-经纬度坐标-WGS84
2、'EPSG:3857'- xy坐标-web墨卡托

3、ol3默认的坐标系为3857,即在创建ol.map的时候,若不指定projection,则默认为EPSG:3857

4、代码示例:

var m_center=[116.35,39.9];//地图中心点-经纬度坐标
//经纬度转至xy
m_center = ol.proj.transform(m_center,'EPSG:4326', 'EPSG:3857' );

//反过来
var m_center=[12914838.35,4814529.9];//地图中心点-xy坐标
//经纬度转至经纬度
m_center = ol.proj.transform(m_center, 'EPSG:3857' ,'EPSG:4326');

二、完整demo

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>加载SVG数据</title>
    <link href="Script/ol4/ol.css" rel="stylesheet" />
    <script src="Script/ol4/ol.js"></script>
    <script src="../Scripts/jquery-1.7.1.js"></script>
    <!--<script src="Script/ol4/SvgImageLayer.js"></script>-->
    <style>
        #map
        {
            width:1000px;
            height:1000px;
        }
    </style>
    <script>    
        $(function () {

            var vec_c = getTdtLayer("vec_w");
            var cva_c = getTdtLayer("cva_w");
            var bounds = [12836027.844390793, 4745190.4650304755, 13098185.245208949, 5069741.1276835548];
            var view = new ol.View({
                center: new ol.proj.transform([116.46, 39.92], "EPSG:4326", "EPSG:3857"),
                zoom: 8,
                extent:bounds


            });
            console.log(new ol.proj.transform([116.46, 39.92], "EPSG:4326", "EPSG:3857"));
            var map = new ol.Map({
                controls: ol.control.defaults({
                    attribution: false
                }),
                target: 'map',
                layers: [vec_c, cva_c],
                view: view,
                
            });

            function getTdtLayer(lyr) {
                var url = "http://t{0-7}.tianditu.com/DataServer?T=" + lyr + "&X={x}&Y={y}&L={z}";
                var layer = new ol.layer.Tile({
                    source: new ol.source.XYZ({
                        url: url
                    })
                });
                return layer;
            }
            map.renderSync();
            var image = new ol.layer.Image();
            map.addLayer(image);
            var source = new ol.source.ImageStatic({
                url: "/OpenLayer/data/wind.svg",
                imageExtent: bounds,
                imageSize: getImageSize(bounds)
            });
            image.setSource(source);           
            //获取图片大小
            function getImageSize(bounds) {
                console.log(bounds);
                var _min = [bounds[0], bounds[1]],
                        _max = [bounds[2], bounds[3]],
                        _topLeft = [bounds[0], bounds[3]];
                var _scrMin = map.getPixelFromCoordinate(_min);
                console.log(_scrMin);
                _scrMax = map.getPixelFromCoordinate(_max);
                console.log(_scrMax);
                var _w = Math.round(_scrMax[0] - _scrMin[0]),
                        _h = Math.round(_scrMin[1] - _scrMax[1]);
                return [_w, _h];
            }
        });
    </script>
</head>
<body>
    <div id="map"></div>
   
</body>
     <script>

    </script>
</html>

参考资料:https://blog.csdn.net/gisshixisheng/article/details/78350959

三、关于解决map.getPixelFromCoordinate为null值

首先我们可以采用先同步渲染的方法map.renderSync()这样这样转换坐标也不会为出错,

在这我们可以通过事件的方式:

map.once('postrender', function() { // safe to call map.getPixelFromCoordinate from now on });

参考资料:https://github.com/openlayers/openlayers/issues/5456#issuecomment-225125384

四、总结

这和加载静态图片差别不大,关于地图图片添加到地图上的问题,主要有两种方式一通过arcgis导出jpg图片,图片四至和坐标系在数据给指定,二可以通过加载svg的方式

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
待兔 待兔
4个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Java修道之路,问鼎巅峰,我辈代码修仙法力齐天
<center<fontcolor00FF7Fsize5face"黑体"代码尽头谁为峰,一见秃头道成空。</font<center<fontcolor00FF00size5face"黑体"编程修真路破折,一步一劫渡飞升。</font众所周知,编程修真有八大境界:1.Javase练气筑基2.数据库结丹3.web前端元婴4.Jav
Stella981 Stella981
3年前
AndroidStudio封装SDK的那些事
<divclass"markdown\_views"<!flowchart箭头图标勿删<svgxmlns"http://www.w3.org/2000/svg"style"display:none;"<pathstrokelinecap"round"d"M5,00,2.55,5z"id"raphael
Stella981 Stella981
3年前
Python之time模块的时间戳、时间字符串格式化与转换
Python处理时间和时间戳的内置模块就有time,和datetime两个,本文先说time模块。关于时间戳的几个概念时间戳,根据1970年1月1日00:00:00开始按秒计算的偏移量。时间元组(struct_time),包含9个元素。 time.struct_time(tm_y
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Stella981 Stella981
3年前
HIVE 时间操作函数
日期函数UNIX时间戳转日期函数: from\_unixtime语法:   from\_unixtime(bigint unixtime\, string format\)返回值: string说明: 转化UNIX时间戳(从19700101 00:00:00 UTC到指定时间的秒数)到当前时区的时间格式举例:hive   selec
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这