我正在尝试为leafletJS地图设置地图图层的样式并具有以下代码,但它似乎根本没有颜色:
var vectorTileOptions = {
rendererFactory: L.canvas.tile,
vectorTileLayerStyles: {
weight: 2,
color: 'yellow',
},
};
var mapLayer = L.vectorGrid.protobuf("/tiles/admin_countries/{z}/{x}/{y}", vectorTileOptions)
它只是呈现标准蓝色,我不确定我做错了什么,任何建议都会很棒。