- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经创建了一个 OpenLayers.Style 来为我的多边形着色,一种调整我的点和所有爵士乐大小的样式,现在我想向用户解释这些样式代表什么。
我在 OpenLayers 中看不到任何允许我使用这些样式绘制自己的图例的内容。一切似乎都指向我向我发送数据的假定 map 服务器,而我没有。
目前看起来我必须绘制一些样本点/区域并屏幕抓取它们以制作我自己的图例。有没有更好的方法可以直接基于样式来做,这样当样式改变时我就不必重新生成图像?
更新
我有一个很好的答案,它依赖于 GeoExt(以及 ExtJS),我仍然想听听是否有人有 jQuery 兼容的答案。特别是如果它是纯 Javascript 和 OpenLayers。
最佳答案
我能够使用 ol.Map 类作为符号的容器来解决我的图例需求。也许有点黑客,但似乎适用于大多数(?)矢量图层(我没有 WMS)。
所以我正在做的是:
if(lyr instanceof ol.layer.Vector)
var style = lyr.getStyle();
var image = style.getImage();
if(image){
if(image instanceof ol.style.Icon){
//raster icon from url
var icon2 = new ol.style.Icon( ({
src: image.getSrc()
}))
var iconStyle2 = new ol.style.Style({
image: icon2
});
row = {};
row.style = iconStyle2;
row.title = lyr.get('title');
}
else{ //ol.style.RegularShape?
row = {};
row.style = style;
row.title = lyr.get('title');
}
}else{
row = {};
row.style = style;
row.title = lyr.get('title');
}
//geometry type
var feats = lyr.getSource().getFeatures();
if (feats && feats.length>0){
if(feats[0].getGeometry() instanceof ol.geom.Point || feats[0].getGeometry() instanceof ol.geom.MultiPoint){
row.geomType="point";
}else if (feats[0].getGeometry() instanceof ol.geom.LineString || feats[0].getGeometry() instanceof ol.geom.MultiLineString){
row.geomType="line";
}else{
row.geomType="polygon";
}
}
for (i = 0; i < legendRows.length; i++) {
row = document.createElement("tr");
//symbol
cell = document.createElement("td");
cell.style="width:35px";
var div = document.createElement("div");
div.style="width:32px; height:32px;";
div.id = "mapLegendRowSymbolDiv" + i;
tble.appendChild(row);
row.appendChild(cell);
cell.appendChild(div);
//layer title
cell = document.createElement("td");
tble.appendChild(row);
row.appendChild(cell);
cell.innerHTML=legendRows[i].title;
}
//append table
$( "#legendText" ).empty();
$( "#legendText" ).append(tble);
//loop legend rows and and insert the maps
var extent = [0, 0, 32, 32];
var projection = new ol.proj.Projection({
code: 'xkcd-image',
units: 'pixels',
extent: extent
});
for (i = 0; i < legendRows.length; i++) {
//target div
var targetDiv = document.getElementById("mapLegendRowSymbolDiv" + i);
//layer for icon
var sourceLegend = new ol.source.Vector({wrapX: false});
var vectorLegend = new ol.layer.Vector({
source: sourceLegend,
style: legendRows[i].style
});
//map
var mapLegend = new ol.Map({
controls: [],
layers: [
new ol.layer.Image({
source: new ol.source.ImageStatic({
projection: projection,
imageExtent: extent
})
}),
vectorLegend
],
target: targetDiv,
view: new ol.View({
projection: projection,
center: ol.extent.getCenter(extent),
zoom: 2,
maxZoom: 2
})
});
//icon feature depending on type
var geom;
if(legendRows[i].geomType=='point'){
geom = new ol.geom.Point([16,16]);
}else if(legendRows[i].geomType=='polygon'){
var polyCoords = [];
polyCoords.push([15.7, 15.7]);
polyCoords.push([16.3, 15.7]);
polyCoords.push([16.3, 16.3]);
polyCoords.push([15.7, 16.3]);
polyCoords.push([15.7, 15.7]);
geom = new ol.geom.Polygon([polyCoords]);
}else{
var lineCoords = [];
lineCoords.push([15.6, 15.6]);
lineCoords.push([16, 16]);
lineCoords.push([16, 15.8]);
lineCoords.push([16.4, 16.2]);
geom = new ol.geom.LineString(lineCoords);
}
var feature = new ol.Feature({
geometry: geom
});
vectorLegend.getSource().addFeature(feature);
}
关于openlayers - 创建 map 图例以匹配 OpenLayers.Style,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5267554/
我在 visual studio 中使用它,但编译器声称 h1 不能嵌套在 legend 元素中,但浏览器无论如何都可以呈现它,所以我很困惑这是有效的还是不是? Caption
Matplotlib 中的图例是帮助观察者理解图像数据的重要工具。 图例通常包含在图像中,用于解释不同的颜色、形状、标签和其他元素. 1. 主要参数 当不设置图例的参数时,默认的图例是这样的.
mongoDB分页的两种方法 mongoDB的分页查询是通过limit(),skip(),sort()这三个函数组合进行分页查询的 下面这个是我的测试数据 第一种方法 查询第一页的数据:db.te
我的 grafana 仪表板图例中有这些名称: stats.gauges.all.cloudwatch.communicationapi.dynamodb.ca_communicationapi_re
鉴于以下情况: import pandas as pd import matplotlib.pyplot as plt d=pd.DataFrame({'category':['a','a','a',
我收到此错误,请问出了什么问题? plt.legend(handles=[d1, d2]) File "/usr/lib/python3/dist-packages/matplotlib/pypl
这个问题已经有答案了: python matplotlib: label in histogram (1 个回答) 已关闭 5 年前。 我无法向使用 matplotlib.pyplot 创建的直方图添
我想更改我的图例,我必须删除分页并将所有标题放在一两行中。我想更改图标。 现在是这个样子 我想要这样的东西 我输入了 scrollArrows: 'none' 但它不起作用。这是我在 Controll
我正在创建一个文件来读取一定数量的 .wav 文件,每个文件对应一个音符。我正在对它们中的每一个执行 FFT,并将它们全部绘制在同一个图形上。但是,我在正确打印图例时遇到了问题,它将我想要使用的名称分
我正在 ggplot 中处理多个 sf 几何图形,并希望以点、线和正方形(对于多边形)的形式显示图例。然而,geom_sf图例结合了我的几何特征(即结合线和点)如下所示: library(ggplot
我想要 geom_text()标签根据变量采用字体系列。 根据 ggplot2 docs 上的示例(向下滚动到底部),我已经这样做了(与 ggplot 文档示例中的相同): library(ggplo
我正在绘制一个 geom_tile 图,其中每个点都有一个特定的 p-value。 图的绘制方式很好,p-value 限制在图例上。 我想添加到这个图例的是具有这个 p-value 的数据点的数量。
我有以下 data.frame : my.df = data.frame(mean = c(0.045729661,0.030416531,0.043202944,0.025600973,0.0405
我正在绘图中打印 Case-Shiller 索引: structure(list(Date = structure(c(10957, 11048, 11139, 11231, 11323, 1141
我想绘制一个包含 4 个不同值( 1 )的栅格,并带有描述类别的分类文本图例,例如 2但有彩盒: 我试过使用图例,例如: legend( 1,-20,legend = c("land","ocean/
我在 R 中用 ggplot2 制作了这个图 由以下代码绘制: ggplot(mtcars) + geom_smooth(fill='grey', alpha=0.3, span=0.1, aes
我有来自两个不同数据框的数据。我正在尝试为每个数据框创建图例。我知道我可以组合数据框并进行操作,但是由于我的数据源,从两个不同的数据框进行绘图最有意义。 请在下面找到简化的示例。我已经接近了,但传说中
我将 highchart 的图形保存为 svg。 var chart = $('#graphicName').highcharts(); EXPORT_WIDTH = 1000; render_wid
我想将自定义符号设置为图例项。目前我有矩形。我需要带有勾号的矩形(如彩色复选框)。根据文档,我可以自定义元素,例如符号附近的文本。 但如果我将绘图上的所有元素都设置为自定义图像 ( Example )
我有下面的代码,可以生成饼图和图例。有没有办法让表情符号和饼图具有相同的对应颜色,因为目前表情符号是黑色的。另外,我希望删除图例中的方形色 block ,并且术语“男性”和“女性”出现在正确的表情符号
我是一名优秀的程序员,十分优秀!