Extends
Methods
- 
    drawAsync(zIndex, callback) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 411
- 
    
    Register a function to be called for rendering at a given zIndex. The function will be called asynchronously. The callback will receive a reference to ol.render.canvas.Immediatecontext for drawing.Name Type Description zIndexnumber Z index. callbackfunction Callback. 
- 
    drawCircleGeometry(circleGeometry) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 429
- 
    
    Render a circle geometry into the canvas. Rendering is immediate and uses the current fill and stroke styles. Name Type Description circleGeometryol.geom.Circle Circle geometry. 
- 
    drawFeature(feature, style) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 473
- 
    
    Render a feature into the canvas. In order to respect the zIndex of the style this method draws asynchronously and thus after calls to drawXxxxGeometry have been finished, effectively drawing the feature on top of everything else. You probably should be using an ol.layer.Vectorinstead of calling this method directly.Name Type Description featureol.Feature Feature. styleol.style.Style Style. 
- 
    drawLineStringGeometry(lineStringGeometry) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 565
- 
    
    Render a LineString into the canvas. Rendering is immediate and uses the current style. Name Type Description lineStringGeometryol.geom.LineString | ol.render.Feature Line string geometry. 
- 
    drawMultiLineStringGeometry(multiLineStringGeometry) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 593
- 
    
    Render a MultiLineString geometry into the canvas. Rendering is immediate and uses the current style. Name Type Description multiLineStringGeometryol.geom.MultiLineString | ol.render.Feature MultiLineString geometry. 
- 
    drawMultiPointGeometry(multiPointGeometry) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 545
- 
    
    Render a MultiPoint geometry into the canvas. Rendering is immediate and uses the current style. Name Type Description multiPointGeometryol.geom.MultiPoint | ol.render.Feature MultiPoint geometry. 
- 
    drawMultiPolygonGeometry(multiPolygonGeometry) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 663
- 
    
    Render MultiPolygon geometry into the canvas. Rendering is immediate and uses the current style. Name Type Description multiPolygonGeometryol.geom.MultiPolygon MultiPolygon geometry. 
- 
    drawPointGeometry(pointGeometry) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 525
- 
    
    Render a Point geometry into the canvas. Rendering is immediate and uses the current style. Name Type Description pointGeometryol.geom.Point | ol.render.Feature Point geometry. 
- 
    drawPolygonGeometry(polygonGeometry) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 628
- 
    
    Render a Polygon geometry into the canvas. Rendering is immediate and uses the current style. Name Type Description polygonGeometryol.geom.Polygon | ol.render.Feature Polygon geometry. 
- 
    setFillStrokeStyle(fillStyle, strokeStyle) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 833
- 
    
    Set the fill and stroke style for subsequent draw operations. To clear either fill or stroke styles, pass null for the appropriate parameter. Name Type Description fillStyleol.style.Fill Fill style. strokeStyleol.style.Stroke Stroke style. 
- 
    setImageStyle(imageStyle) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 877
- 
    
    Set the image style for subsequent draw operations. Pass null to remove the image style. Name Type Description imageStyleol.style.Image Image style. 
- 
    setTextStyle(textStyle) experimentalsrc/ol/render/canvas/canvasimmediate.js, line 913
- 
    
    Set the text style for subsequent draw operations. Pass null to remove the text style. Name Type Description textStyleol.style.Text Text style. 
 OpenLayers 3
 OpenLayers 3