Classes
- Attribution
- Collection
- CollectionEvent
- DeviceOrientation
- DragBoxEvent
- DrawEvent
- Feature
- FeatureOverlay
- Geolocation
- Graticule
- Image
- ImageBase
- ImageTile
- Kinetic
- Map
- MapBrowserEvent
- MapEvent
- Object
- ObjectAccessor
- ObjectEvent
- Observable
- Overlay
- SelectEvent
- Sphere
- Tile
- View
Namespaces
- animation
- color
- control
- coordinate
- easing
- events
- extent
- feature
- format
- geom
- has
- interaction
- layer
- loadingstrategy
- proj
- render
- source
- style
- tilegrid
Members
- 
    ol.WEBGL_MAX_TEXTURE_SIZE{number} {undefined} experimental
- 
    
    The maximum supported WebGL texture size in pixels. If WebGL is not supported, the value is set to undefined.
Methods
- 
    ol.inherits(childCtor, parentCtor) experimentalsrc/ol/ol.js, line 291
- 
    
    
    Inherit the prototype methods from one constructor into another. Usage: function ParentClass(a, b) { } ParentClass.prototype.foo = function(a) { } function ChildClass(a, b, c) { // Call parent constructor ParentClass.call(this, a, b); } ol.inherits(ChildClass, ParentClass); var child = new ChildClass('a', 'b', 'see'); child.foo(); // This works.In addition, a superclass' implementation of a method can be invoked as follows: ChildClass.prototype.foo = function(a) { ChildClass.base(this, 'foo', a); // Other code here. };Name Type Description childCtorfunction Child constructor. parentCtorfunction Parent constructor. 
Type Definitions
- 
    ol.CanvasFunctionType() experimentalsrc/ol/canvasfunction.js, line 17
- 
    
    
    A function returning the canvas element ( {HTMLCanvasElement}) used by the source as an image. The arguments passed to the function are:ol.Extentthe image extent,{number}the image resolution,{number}the device pixel ratio,ol.Sizethe image size, andol.proj.Projectionthe image projection. The canvas returned by this function is cached by the source. The this keyword inside the function references theol.source.ImageCanvas.
- 
    ol.Color{Array.<number>} experimental
- 
    
    A color represented as a short array [red, green, blue, alpha]. red, green, and blue should be integers in the range 0..255 inclusive. alpha should be a float in the range 0..1 inclusive. 
- 
    ol.Coordinate{Array.<number>}
- 
    
    An array of numbers representing an xy coordinate. Example: [16, 48].
- 
    ol.CoordinateFormatType()src/ol/coordinate.js, line 15
- 
    
    
    A function that takes a ol.Coordinateand transforms it into a{string}.
- 
    ol.Extent{Array.<number>}
- 
    
    An array of numbers representing an extent: [minx, miny, maxx, maxy].
- 
    ol.ImageLoadFunctionType() experimentalsrc/ol/imageloadfunction.js, line 21
- 
    
    
    A function that takes an ol.Imagefor the image and a{string}for the src as arguments. It is supposed to make it so the underlying imageol.Image#getImageis assigned the content specified by the src. If not specified, the default isfunction(image, src) { image.getImage().src = src; }Providing a custom imageLoadFunctioncan be useful to load images with post requests or - in general - through XHR requests, where the src of the image element would be set to a data URI when the content is loaded.
- 
    ol.OverlayPositioning{string}
- 
    
    Overlay position: 'bottom-left','bottom-center','bottom-right','center-left','center-center','center-right','top-left','top-center','top-right'
- 
    ol.Pixel{Array.<number>}
- 
    
    An array with two elements, representing a pixel. The first element is the x-coordinate, the second the y-coordinate of the pixel. 
- 
    ol.PreRenderFunction() experimentalsrc/ol/framestate.js, line 21
- 
    
    
    Function to perform manipulations before rendering. This function is called with the ol.Mapas first and an optionalolx.FrameStateas second argument. Returntrueto keep this function for the next frame,falseto remove it.
- 
    ol.RendererType{string}
- 
    
    Available renderers: 'canvas','dom'or'webgl'.
- 
    ol.Size{Array.<number>}
- 
    
    An array of numbers representing a size: [width, height].
- 
    ol.TileCoord{Array.<number>} experimental
- 
    
    An array of three numbers representing the location of a tile in a tile grid. The order is z,x, andy.zis the zoom level.
- 
    ol.TileLoadFunctionType() experimentalsrc/ol/tileloadfunction.js, line 11
- 
    
    
    A function that takes an ol.ImageTilefor the image tile and a{string}for the src as arguments.
- 
    ol.TileUrlFunctionType() experimentalsrc/ol/tileurlfunction.js, line 20
- 
    
    
    A function that takes an ol.TileCoordfor the tile coordinate, a{number}representing the pixel ratio and anol.proj.Projectionfor the projection as arguments and returns a{string}or undefined representing the tile URL.
- 
    ol.TransformFunction()src/ol/transformfunction.js, line 13
- 
    
    
    A transform function accepts an array of input coordinate values, an optional output array, and an optional dimension (default should be 2). The function transforms the input coordinate values, populates the output array, and returns the output array. 
 OpenLayers 3
 OpenLayers 3