gpt4 book ai didi

javascript - 使用 mapbox 定义基于 geojson 的多边形填充颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:58:56 25 4
gpt4 key购买 nike

我正在使用 mapbox 示例在 map 上创建多个多边形,并且每个多边形都有弹出事件。我的问题是我需要根据每个多边形的 geojson 属性设置不同的填充颜色。

This是我的例子。我正在使用以下 javascript 代码:

mapboxgl.accessToken = 'pk.eyJ1IjoibWFoYW5tZWhydmFyeiIsImEiOiJ6SDdSWldRIn0.8zUNm01094D1aoSeHpWYqA';
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/streets-v9',
center: [51.40545845031738,
35.75069181054449],
zoom: 10

});

map.on('load', function (e) {
// Add a layer showing the state polygons.
map.addLayer({
'id': 'states-layer',
'type': 'fill',
'source': {
'type': 'geojson',
'data': 'geojson.js'
},
'paint': {
'fill-color': 'rgba(200, 100, 240, 0.4)',
'fill-outline-color': 'rgba(200, 100, 240, 1)'
}
});

// When a click event occurs on a feature in the states layer, open a popup at the
// location of the click, with description HTML from its properties.
map.on('click', 'states-layer', function (e) {
new mapboxgl.Popup()
.setLngLat(e.lngLat)
//.setHTML(e.features[0].properties.name)
.setHTML("<h1>"+e.features[0].properties.userone+"</h1>"+e.features[0].properties.name)

.addTo(map);
});

// Change the cursor to a pointer when the mouse is over the states layer.
map.on('mouseenter', 'states-layer', function () {
map.getCanvas().style.cursor = 'pointer';
});

// Change it back to a pointer when it leaves.
map.on('mouseleave', 'states-layer', function () {
map.getCanvas().style.cursor = '';
});
});

这里它加载的颜色都是一样的

'paint': {
'fill-color': 'rgba(200, 100, 240, 0.4)',
'fill-outline-color': 'rgba(200, 100, 240, 1)'
}

在我的 geojson 文件中,我有一个颜色键:

"type": "Feature",
"properties": {
"userone":"پیروزی",
"name":"North Dafkota",
"featureclass":"Admin-1 scale rank",
"color":"red"
}

我想用它来定义多边形的填充颜色。

最佳答案

如果您只想使用您在 geojson 要素属性中定义的颜色。然后你可以像这样使用图层标识属性:

 map.addLayer({
'id': 'states-layer',
'type': 'fill',
'source': {
'type': 'geojson',
'data': 'geojson.js'
},
'paint': {
'fill-color': {
type: 'identity',
property: 'color',
},
'fill-outline-color': 'rgba(200, 100, 240, 1)'
}
});

另见:https://www.mapbox.com/mapbox-gl-js/style-spec/#function-type

并且:https://www.mapbox.com/mapbox-gl-js/style-spec/#types-color

关于javascript - 使用 mapbox 定义基于 geojson 的多边形填充颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46338002/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com