feature = new ol.Feature({
geometry: new ol.geom.Point([121.359045, 31.317679]),
});
const symbol = {
icon: "./img/images/earthquake.png",
scale: 0.8,
textColor: "#fff",
font: "14px Calibri,sans-serif",
};
feature.setStyle(createCustomStyle("ol多背景颜色", symbol, ["rgba(153, 115, 81, 1)", "rgba(36, 215, 150, 1)", "rgba(0, 255, 0, 1)"]));
function createCustomStyle(text, symbol, colors) {
let canvas = document.createElement("canvas");
let context = canvas.getContext("2d");
context.font = symbol.font;
let width = context.measureText(text).width;
let styles = [],
style;
if (colors && colors.length) {
for (let i = 0, len = colors.length; i < len; i++) {
style = new ol.style.Style({
text: new ol.style.Text({
text: text,
font: symbol.font,
offsetX: (i * width) / len,
offsetY: -36,
textAlign: "center",
textBaseline: "bottom",
fill: new ol.style.Fill({
color: "rgba(255,255,255,0)",
}),
backgroundFill: new ol.style.Fill({
color: colors[i],
}),
padding: [4, -(i * width) / len + 4, 4, 4],
}),
});
styles.push(style);
}
}
style = new ol.style.Style({
text: new ol.style.Text({
text: text,
font: symbol.font,
offsetX: 0,
offsetY: -36,
textAlign: "center",
textBaseline: "bottom",
fill: new ol.style.Fill({
color: symbol.textColor,
}),
padding: [4, 4, 4, 4],
}),
image: new ol.style.Icon({
src: symbol.icon,
scale: symbol.scale,
}),
});
styles.push(style);
return styles;
}
openlayers text多背景颜色
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 在功能列表页用onload加载页面时为页面设置渐变背景颜色,直接设置之后当页面数据超过手机可视页面的高度时,页面显...
- (本文代码已升级至Swift4) 默认情况,导航栏UINavigationController的样式如下,如果想要...
- StatusBar 状态栏工具类,可以修改背景颜色和图片背景、隐藏状态栏以及修改状态栏字体颜色 方法 调用 这样就...
- 通过苹果原有的UISwitch的属性还无法给按钮上加上文字,无法自定义各个部分的颜色。所以就自定义一个类继承UIV...
- 转载:http://blog.csdn.net/hong1595/article/details/43123215