openlayers-8.x-4.x-dev/src/Plugin/Source/OSM/js/osm.js
src/Plugin/Source/OSM/js/osm.js
Drupal.openlayersPluginManager.register({
fs: 'openlayers.Source:OSM',
init: function(data) {
if (data.opt.crossOrigin !== undefined) {
if (data.opt.crossOrigin === 'null') {
data.opt.crossOrigin = null;
}
}
return new ol.source.OSM(data.opt);
}
});
