Mapbox GL JS 中的圆形样式

Circle styles in Mapbox GL JS

我正在使用一些创建蓝点的 Mapbox GL JS 代码,如果我可以调整它来绘制一个带有透明中心的黑色环(有点像“O”),我正在工作?

我下面的代码是:

 paint: {
        'circle-radius': 14,
        'circle-color': '#004cf0',
        }

如果有人能指出正确的方向,我将不胜感激。

像这样:

paint: {
        'circle-radius': 14,
        'circle-color': 'transparent',
        'circle-stroke-color': 'black',
        'circle-stroke-width': 2,
        }