Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在带有库leaflet-measure-path的角度项目中使用传单来显示我的绘图的距离和其他值。我正在尝试修改数字的字体大小,但我找不到直接在地图的 div 上应用样式的方法。
有什么建议吗?谢谢。
您需要更改css中的字体大小或覆盖样式:
.leaflet-measure-path-measurement { font-size: 18px; }
如果未应用新字体大小,请尝试!important:
!important
.leaflet-measure-path-measurement { font-size: 18px !important; }