Wie werden mit dem DrawFeature-Steuerelement erstellte Features formatiert?


9

Ich habe dieses Tutorial befolgt: http://workshop.pgrouting.org/chapters/geoext_client.html#select-the-start-and-final-destination

Es enthält ein Openlayers.Control.DrawFeatures-Steuerelement, das im folgenden Codebeispiel definiert ist. Sie können auch die Linien sehen , wo der Autor Kommentare „ wenn wir einen besonderen Stil auf den Startpunkt anwenden möchten wir dies hier tun sollten“ . Das Problem ist: Ich weiß nicht, wie ich einen Stil in dieser Einstellung anwenden soll, und kann mit dem DrawFeatures-Steuerelement auf diese Weise keine Beispiele finden.

Wie kann ich den Startpunkt mit diesem DrawFeatures-Steuerelement einen anderen Stil als den Endpunkt verwenden lassen?

DrawPoints = OpenLayers.Class(OpenLayers.Control.DrawFeature, {

// this control is active by default
autoActivate: true,

initialize: function(layer, options) {
    // only points can be drawn
    var handler = OpenLayers.Handler.Point;
    OpenLayers.Control.DrawFeature.prototype.initialize.apply(
            this, [layer, handler, options]
        );
},

drawFeature: function(geometry) {
    OpenLayers.Control.DrawFeature.prototype.drawFeature.apply(
            this, arguments 
        );
    if (this.layer.features.length == 1) {
        // we just draw the startpoint
        // note: if we want to apply a special style to the 
        //       start point we should do this here
    } else if (this.layer.features.length == 2) {
        // we just draw the finalpoint
        // note: if we want to apply a special style to the 
        //       final point we should do this here

        // we have all what we need; we can deactivate ourself.
        this.deactivate();            
    }
}
});

Antworten:


7

Fügen Sie diese Linien hinzu und ändern Sie sie entsprechend Ihrem Stil:

...
    if (this.layer.features.length == 1) {
        // we just draw the startpoint
        // note: if we want to apply a special style to the 
        //       start point we should do this here

        var myFirstPointStyle = OpenLayers.Util.applyDefaults(myFirstPointStyle, OpenLayers.Feature.Vector.style['default']);
        myFirstPointStyle.fillOpacity = 0.8;
        myFirstPointStyle.strokeWidth = 2;
        myFirstPointStyle.fillColor = "#ffffff";
        this.layer.features[this.layer.features.length - 1].style = myFirstPointStyle;

        this.layer.redraw();

    } else if (this.layer.features.length == 2) {
        // we just draw the finalpoint
        // note: if we want to apply a special style to the 
        //       final point we should do this here
        var mySecondPointStyle = OpenLayers.Util.applyDefaults(mySecondPointStyle, OpenLayers.Feature.Vector.style['default']);
        mySecondPointStyle.fillOpacity = 0.8;
        mySecondPointStyle.strokeWidth = 7;
        mySecondPointStyle.pointRadius = 12;
        mySecondPointStyle.fillColor = "#000000";
        this.layer.features[this.layer.features.length - 1].style = mySecondPointStyle;

        this.layer.redraw();


        // we have all what we need; we can deactivate ourself.
        this.deactivate();
    }
...

Dadurch wird der Standardstil kopiert und Sie können ihn von dort aus ändern. Sie sollten so etwas bekommen:

Geben Sie hier die Bildbeschreibung ein


Vielen Dank! Hier scheint der Aufruf von redraw () der Schlüssel zu sein. Ich habe das nie versucht :)
underdark


Vielen Dank, da es auch mein Problem gelöst hat, das mit der Anwendung von Stilen zusammenhängt
GSTomar
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.