Вы должны добавить всплывающее окно к слою:
control = L.Control.fileLayerLoad({
fitBounds: true,
layerOptions: {
style: style,
pointToLayer: function (data, latlng) {
return L.circleMarker(
latlng,
{ style: style }
);
},
onEachFeature: function(feature, layer) {
//load your data for popup feature.properties.YOUROBJECT
layer.bindPopup("test String");
}
}
});
Пожалуйста, не проверяйте ответ