赞
踩
还是大剑师兰特:曾是美国某知名大学计算机专业研究生,现为航空航海领域高级前端工程师;CSDN知名博主,GIS领域优质创作者,深耕openlayers、leaflet、mapbox、cesium,canvas,webgl,echarts等技术开发,欢迎加底部微信(gis-dajianshi),一起交流。
No. | 内容链接 |
---|---|
1 | Openlayers 【入门教程】 - 【源代码+示例300+】 |
2 | Leaflet 【入门教程】 - 【源代码+图文示例 150+】 |
3 | Cesium 【入门教程】 - 【源代码+图文示例200+】 |
4 | MapboxGL【入门教程】 - 【源代码+图文示例150+】 |
5 | 前端就业宝典 【面试题+详细答案 1000+】 |
OpenLayers 提供了一种强大且灵活的方式来自定义地图上的矢量要素(如点、线、面)的样式,这些样式是通过 ol/style
模块中的 ol.style.Style
类和其他相关子类(如 ol.style.Icon
、ol.style.Stroke
、ol.style.Fill
、ol.style.Text
等)来实现的。
import { Style, Circle, Fill, Stroke } from 'ol/style';
// 创建一个简单的红色实心圆形标记样式
var pointStyle = new Style({
image: new Circle({
radius: 5,
fill: new Fill({ color: 'red' }),
stroke: new Stroke({ color: 'black', width: 1 })
})
});
// 为矢量点图层设置样式
var vectorSource = new VectorSource({ ... });
var vectorLayer = new VectorLayer({
source: vectorSource,
style: pointStyle
});
var lineStyle = new Style({
stroke: new Stroke({
color: 'blue',
width: 2
})
});
// 为矢量线图层设置样式
var vectorLayer = new VectorLayer({
source: vectorSource,
style: lineStyle
});
var polygonStyle = new Style({
fill: new Fill({
color: 'rgba(255, 255, 0, 0.5)' // 半透明黄色填充
}),
stroke: new Stroke({
color: 'black',
width: 1
})
});
// 为矢量面图层设置样式
var vectorLayer = new VectorLayer({
source: vectorSource,
style: polygonStyle
});
var textStyle = new Style({
text: new Text({
font: '14px Arial',
text: 'Label Text',
fill: new Fill({ color: '#000' }),
stroke: new Stroke({ color: '#fff', width: 2 }),
offsetX: 10, // 文字相对于几何中心的水平偏移
offsetY: 20 // 文字相对于几何中心的垂直偏移
})
});
// 组合多个样式
var featureStyle = [polygonStyle, lineStyle, pointStyle, textStyle];
// 设置复合样式
var vectorLayer = new VectorLayer({
source: vectorSource,
style: function(feature) {
return featureStyle; // 或者根据 feature 的属性动态返回样式
}
});
有时我们需要根据要素的属性动态决定其样式,可以使用函数式样式:
var vectorLayer = new VectorLayer({
source: vectorSource,
style: function(feature, resolution) {
var fillColor;
if (feature.get('type') === 'important') {
fillColor = 'red';
} else {
fillColor = 'green';
}
return [
new Style({
fill: new Fill({ color: fillColor }),
stroke: new Stroke({ color: 'black', width: 1 })
})
];
}
});
在这个例子中,根据特征的 'type'
属性,填充颜色会动态变化。
import { Icon } from 'ol/style';
var iconStyle = new Style({
image: new Icon({
src: 'path/to/icon.png',
anchor: [0.5, 46],
anchorXUnits: 'fraction',
anchorYUnits: 'pixels',
scale: 0.5
})
});
// 设置带有图标的矢量点样式
var vectorLayer = new VectorLayer({
source: vectorSource,
style: iconStyle
});
以上就是 OpenLayers 中样式的基本使用方法,你可以组合使用这些样式以创建复杂的视觉效果,并根据具体需求调整样式属性。
示例一:Openlayers实战:fill,stroke,icon,text应用范例
示例四:多边形拐点用不同形状表示(圆形、三角形、矩形、正方形、星形…)
示例五: 给feature填充线性渐变色
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。