Im using this code to load a kml file over the map which in this case Im using OpenStreetMap.
I want to know how can I add a popup when clicking on the kml(road) so that it shows some information about it.
var line_1 = new OpenLayers.Layer.GML(
'Line - 1',
"lines/line_1.kml",
{
visibility: true,
format: OpenLayers.Format.KML,
style:
{
strokeWidth: 4,
strokeColor: "#ff0000",
strokeOpacity: 1
},
projection: map.displayProjection
}
);