According to OpenLayers the Openlayers.Layer.GML is depreciated and not supported in ver. 2.12. I need to move to Vector layer, but I can't figure it out.
In my previous version I have defined it as:
//Locations and UnitLocations layer - GeoJSON
var LocationStyle = new OpenLayers.Style({
strokeColor: "#5B5B5B",
strokeWidth: 1,
fillColor: "#F4FBA1",
pointRadius: 10,
strokeOpacity: 0.8,
fillOpacity: 0.8,
label: "${Location}",
labelYOffset: "-20",
labelAlign: "cc",
fontColor: "#000000",
fontOpacity: 1,
fontFamily: "Arial",
fontSize: 12,
fontWeight: "300"
});
var LocationURL = "http://bit.ly/Nfe6IH?q=ICS_Locations&IncidentCode=" + "VAJA%20PSI%2012" + "&key=" + Math.random();
Locations = new OpenLayers.Layer.GML("Locations", LocationURL, {
format: OpenLayers.Format.GeoJSON,
projection: new OpenLayers.Projection("EPSG:4326"), //4326 for WGS84
styleMap: new OpenLayers.StyleMap(LocationStyle)
});
In ver. 2.12 of Openlayers this is not supported any more. Do you have any example how can I accomplish that?
Thank you.