Your browser does not support HTML5 canvas. Fork me on GitHub

Available Packages:

Annotations

Source

function annotation()

Source

This annotation allows this function to be used as an annotation.

function compiletime()

Source

This annotation means that this function will be executed when the map is compiled.

function compiletimenative()

Source

Functions annotated with @compiletimenative are natives that are only available at compiletime, but not ingame.

function config()

Source

Elements annotated with @config configure an element in the correspoding package (i.e. replaced by a different implementation).

function configurable()

Source

Elements annotated with @configurable can be configured (i.e. replaced by a different implementation) in configuration packages.

function deprecated()

Source

This annotation means that this function should no longer be used.

function deprecated(string _message)

Source

This annotation means that this function should no longer be used. The corresponding message is a hint for which function to use instead.

function extern()

Source

Functions annotated with @extern are assumed to be defined in external sources and are thus not included in the compilation output.

function ifnotdefined()

Source

Functions annotated with @ifNotDefined are only output into the mapscript if they don't already exist.

function inline()

Source

Functions annotated with @inline will have a higher priority of being inlined by the optimizer.

function noinline()

Source

Functions annotated with @inline will have a lower priority of being inlined by the optimizer.