fill und fillColor bei GPX-Dateien?

Hallo OSM-Gemeinde,

ich komme mit dem Wert in meinen Script nicht klar, siehe Beispiel-Code unten. Egal, was ich bei fill und fillColor eingebe. Es werden nur die Konturen der GPX-Datei in der Karte eingefärbt. Was mache ich falsch? Wie kann ich die Farbe der Fläche ändern? Noch eine Anmerkung: Die Kontur ist geschlossen. Der Anfangs- und der Endpunkt in der GPX-Datei sind gleich. Vielen Dank schon einmal für eure Hilfe!

var gpxTrackStyle = {strokeColor: "#00FF00", strokeWidth: 2, fillColor: "#00FF00", pointRadius: 5};
var gpxTrack = new OpenLayers.Layer.Vector("Title",{
                protocol: new OpenLayers.Protocol.HTTP
                ({
                    url: "path",
                    format: new OpenLayers.Format.GPX()
                }),
                strategies: [new OpenLayers.Strategy.Fixed()],
                style: gpxTrackStyle,
                projection: new OpenLayers.Projection("EPSG:4326")
});
            
map.addLayer(gpxTrack);