liujiusheng / blog

个人博客,blog
19 stars 0 forks source link

mapbox symbol类型只显示文字 #61

Open liujiusheng opened 6 years ago

liujiusheng commented 6 years ago

mapbox使用text-field的时候一定要用text-font指定一下使用的字体,否则显示不出来内容。

原因为: mapbox默认的font值为["Open Sans Regular","Arial Unicode MS Regular"] 而系统中获似匹配不到Open Sans Regular这个值,所以显示不出来。

所以要设置为:

"text-field": "{names}",
"text-font": [
      "Arial Unicode MS Regular"
 ]

若只想显示文字,则可设置icon-size为0