Set crossOrigin to anonymous in mapbox-streets-v6-style

This commit is contained in:
Éric Lemoine
2018-10-23 10:56:33 +02:00
parent 0787aa3439
commit e0a018fa1e

View File

@@ -16,7 +16,8 @@ function createMapboxStreetsV6Style(Style, Fill, Stroke, Icon, Text) {
if (!icon) {
icon = new Style({image: new Icon({
src: 'https://unpkg.com/@mapbox/maki@4.0.0/icons/' + iconName + '-15.svg',
imgSize: [15, 15]
imgSize: [15, 15],
crossOrigin: 'anonymous'
})});
iconCache[iconName] = icon;
}