openlayers-8.x-4.x-dev/src/Plugin/Source/Vector/js/vector.js
src/Plugin/Source/Vector/js/vector.js
Drupal.openlayersPluginManager.register({
fs: 'openlayers.Source:Vector',
init: function(data) {
var options = {
features: []
};
if (data.opt !== undefined && data.opt.features !== undefined) {
// Ensure the features are really an array.
if (!(data.opt.features instanceof Array)) {
data.opt.features = [{wkt: data.opt.features}];
}
for (var i in data.opt.features) {
if (data.opt.features[i].wkt) {
try {
var data_projection = data.opt.features[i].projection || 'EPSG:4326';
var feature = new ol.format.WKT().readFeature(data.opt.features[i].wkt, {
dataProjection: data_projection,
featureProjection: data.map.getView().getProjection()
});
if (data.opt.features[i].attributes !== undefined) {
feature.setProperties(data.opt.features[i].attributes);
}
options.features.push(feature);
}
catch(e) {
}
}
}
}
return new ol.source.Vector(options);
}
});
