I'd like to use Font Awesome or Bootstrap Glyphicons as point text symbols. This used to work in previous versions of the API but now throws an error: "Couldn't find font glyphicons-halflings-regular. Falling back to Arial Unicode MS Regular" Here is a sample:
https://codepen.io/anon/pen/eXwRvR
Relevant code:
<SPAN class="keyword token">const</SPAN> textSymbol <SPAN class="operator token">=</SPAN> <SPAN class="punctuation token">{</SPAN>
type<SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"text"</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="comment token">// autocasts as new TextSymbol()</SPAN>
color<SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"#7A003C"</SPAN><SPAN class="punctuation token">,</SPAN>
text<SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"\ue021"</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="comment token">// glyphicon home</SPAN>
font<SPAN class="punctuation token">:</SPAN> <SPAN class="punctuation token">{</SPAN> <SPAN class="comment token">// autocasts as new Font()</SPAN>
size<SPAN class="punctuation token">:</SPAN> <SPAN class="number token">36</SPAN><SPAN class="punctuation token">,</SPAN>
family<SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"Glyphicons Halflings"</SPAN>
<SPAN class="punctuation token">}</SPAN>
<SPAN class="punctuation token">}</SPAN><SPAN class="punctuation token">;</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>If you change "4.9" to "4.10" on line 17 in the codepen sample, it will break. Any ideas??