mirror of
https://github.com/maputnik/editor.git
synced 2025-12-08 07:10:00 +00:00
12 lines
344 B
JavaScript
12 lines
344 B
JavaScript
import MapboxGl from 'mapbox-gl'
|
|
import {readFileSync} from 'fs'
|
|
|
|
const data = readFileSync(__dirname+"/../../node_modules/@mapbox/mapbox-gl-rtl-text/mapbox-gl-rtl-text.js", "utf8");
|
|
|
|
const blob = new window.Blob([data], {
|
|
type: "text/javascript"
|
|
});
|
|
const objectUrl = window.URL.createObjectURL(blob);
|
|
|
|
MapboxGl.setRTLTextPlugin(objectUrl);
|