的OpenLayers 5 RegularShape特征是从指定的坐标偏移

问题描述 投票:0回答:1

我放置矢量层上自定义标记,但更向下的一个坐标点是从图的上边缘,越标志形状向上从该点的偏移量。

我使用的是不同的地图投影(EPSG:5514),所以有可能是连接那里。

我需要知道的是,如何在我的代码更改为集中在指定坐标标记形状。

代码的相关部分:

var stroke = new ol.style.Stroke({color: 'red', width: 1});
var fill = new ol.style.Fill({color: 'red'});

function styleFunction(feature, text) {
    feature.displayText = text;
    return [
        new ol.style.Style({
            image: new ol.style.RegularShape({
                fill: fill,
                stroke: stroke,
                points: 3,
                radius: 8,
                rotation: 0,
                angle: 0
            }),
            text: new ol.style.Text({
                font: '14px Calibri,sans-serif',
                fill: new ol.style.Fill({ color: markerTextColor }),
                stroke: new ol.style.Stroke({
                  color: textcolor_DKM, width: 1
                }),
                textAlign: 'left',
                offsetX: 10,
                offsetY: -2,
                text: text
              })
        })
    ];
}

var vectorSource = new ol.source.Vector();
var markerVectorLayer = new ol.layer.Vector({
    title: 'Notes',
    visible: false,
    source: vectorSource
});

var feature = new ol.Feature({
    geometry: new ol.geom.Point(
        ol.proj.fromLonLat([Number(lon), Number(lat)], 'EPSG:5514')
    )
});
feature.setStyle(styleFunction(feature, desc));
vectorSource.addFeature(feature);

如果您需要更多的信息,让我知道。

openlayers openlayers-5
1个回答
0
投票

使用与OGC WKT串最新proj4.js库。这里获取proj4.js:

https://cdnjs.cloudflare.com/ajax/libs/proj4js/2.5.0/proj4.js

你可以用下面的线用于投影的定义代码去:

proj4.defs('EPSG:5514', 'PROJCS["S-JTSK / Krovak East North",GEOGCS["S-JTSK",DATUM["System_Jednotne_Trigonometricke_Site_Katastralni",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],TOWGS84[589,76,480,0,0,0,0],AUTHORITY["EPSG","6156"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4156"]],PROJECTION["Krovak"],PARAMETER["latitude_of_center",49.5],PARAMETER["longitude_of_center",24.83333333333333],PARAMETER["azimuth",30.28813972222222],PARAMETER["pseudo_standard_parallel_1",78.5],PARAMETER["scale_factor",0.9999],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["X",EAST],AXIS["Y",NORTH],AUTHORITY["EPSG","5514"]]');

那么当你需要使用投影,去:

var proj = ol.proj.get('EPSG:5514');
© www.soinside.com 2019 - 2024. All rights reserved.