diff --git a/dist/olexp.js b/dist/olexp.js index a8f4934..d91bd2b 100644 --- a/dist/olexp.js +++ b/dist/olexp.js @@ -17,6 +17,7 @@ /** * @namespace olexp.measure + * @private */ const olexp = { measure: {}, @@ -31,7 +32,7 @@ * Enumeration of item measurements types. Key where measurement is stored. * @enum {string} * @memberOf olexp.measure - * @public + * @private * @readonly */ olexp.measure.properties = { @@ -557,7 +558,7 @@ * @param {Object} options Measurement options * @param {olexp.measure.Type} options.type Type of measurement to compute * @param {olexp.ExplorerSettings} options.settings Explorer settings - * @public + * @private * @return {object} measure.Tool API. */ olexp.measure.Tool = function(map, options) { @@ -590,7 +591,7 @@ * Enumeration of allowable measurement types * @enum {string} * @memberOf olexp.measure - * @public + * @private * @readonly */ olexp.measure.Type = { @@ -610,7 +611,7 @@ * Measurement tool overlay * @memberOf olexp.measure * @param {object} options ol.Overlay options - * @public + * @private */ olexp.measure.Overlay = Overlay; @@ -624,6 +625,7 @@ /** * @description olexp specific OpenLayers 3 classes * @namespace olexp.ol + * @private */ const olexp$1 = { ol: {}, @@ -703,7 +705,7 @@ * @param {object} options Control options * @param {boolean} options.hidden True if toolbar is initially hidden * @param {olexp.ExplorerSettings} options.settings Explorer settings - * @public + * @private * @return {external:jQuery.fn.w2toolbar.properties} ToolbarShow toolbar * control */ @@ -726,6 +728,7 @@ /** * @namespace olexp.util + * @private */ const olexp$2 = { util: {}, @@ -873,7 +876,7 @@ * @param {string} name Name of new vector layer * @param {array} features Array of features * @param {boolean} cluster True if features should be clustered - * @public + * @private */ Util.prototype.addLayerVector = function(map, name, features, cluster) { if (cluster === undefined) { @@ -932,7 +935,7 @@ * Get feature style * @memberOf Util.prototype * @param {external:ol.Feature} feature Feature to style - * @public + * @private * @return {ol.Style} Cluster style */ Util.prototype.getClusterStyle = function(feature) { @@ -949,7 +952,7 @@ /** * Create map controls * @memberOf Util.prototype - * @public + * @private * @return {object} Object of ol.control objects by key name */ Util.prototype.getControls = function() { @@ -974,7 +977,7 @@ * Create drag and drop interaction * @memberOf Util.prototype * @param {ol.Map} map Source map - * @public + * @private * @return {ol.interaction.DragAndDrop} ol3 drag and drop interaction */ Util.prototype.getDragAndDrop = function(map) { @@ -1001,7 +1004,7 @@ * @memberOf Util.prototype * @param {external:ol.Map} map Source map * @param {object} options ol.Graticule constructor options - * @public + * @private * @return {external:ol.Graticule} New graticule based on settings */ Util.prototype.getGraticule = function(map, options) { @@ -1021,7 +1024,7 @@ * Create map interactions * @memberOf Util.prototype * @param {external:ol.Map} map Source map - * @public + * @private * @return {object} Object of ol.interaction objects by key name */ Util.prototype.getInteractions = function(map) { @@ -1035,7 +1038,7 @@ /** * Get object of ol3 tile types * @memberOf Util.prototype - * @public + * @private * @return {object} Object of ol.source objects */ Util.prototype.getTileTypes = function() { @@ -1088,7 +1091,7 @@ /** * Supported ol3 file types * @memberOf olexp.util - * @public + * @private * @readonly * @returns {object} ol3 file types */ @@ -1119,7 +1122,7 @@ * Find feature reader based on filename extension * @memberOf olexp.util * @param {string} filename Filename to be read - * @public + * @private * @return {external:ol.format.Feature|null} File reader */ olexp.util.getReader = function(filename) { @@ -1149,7 +1152,7 @@ * @memberOf olexp.util * @param {external:ol.Collection} layers Map layers * @param {external:ol.layer.Layer|external:ol.Overlay} layer Layer to find - * @public + * @private * @return {number} Index of layer */ olexp.util.indexOf = function(layers, layer) { @@ -1173,7 +1176,7 @@ * properties * @param {external:jQuery.fn.w2popup.properties} popupOptions w2popup * properties - * @public + * @private */ olexp.util.popup = function(id, onChanges, formOptions, popupOptions) { const name = formOptions.name; @@ -1235,7 +1238,7 @@ * @memberOf olexp.util * @param {string} filename Filename whose extension will be replaced * @param {string} extension New extension (including dot) - * @public + * @private * @return {string} New filename with extension replaced */ olexp.util.setExtension = function(filename, extension) { @@ -1251,7 +1254,7 @@ * Get properties from feature accounting for clustered features * @memberOf olexp.util * @param {external:ol.Feature} feature Source feature - * @public + * @private * @return {object} Feature properties */ olexp.util.toProperties = function(feature) { @@ -1292,7 +1295,7 @@ * Convert properties object to record for w2ui grid * @memberOf olexp.util * @param {object} properties Object properties to convert to grid record - * @public + * @private * @return {array} Properties in record format */ olexp.util.toRecords = function(properties) { @@ -1315,7 +1318,7 @@ * Utility functions * @memberOf olexp.util * @param {olexp.ExplorerSettings} settings olexp settings - * @public + * @private * @return {object} Utility API. */ olexp.util.Util = function(settings) { @@ -1338,6 +1341,7 @@ /** * @namespace olexp.control + * @private */ const olexp$3 = { control: {}, @@ -3060,7 +3064,7 @@ * @param {object} options Control options * @param {boolean} options.hidden True if toolbar is initially hidden * @param {olexp.ExplorerSettings} options.settings Explorer settings - * @public + * @private * @return {external:jQuery.fn.w2toolbar.properties} ToolbarHide toolbar * control */ @@ -3087,6 +3091,7 @@ /** * @namespace olexp.event + * @private */ const olexp$4 = { event: {}, @@ -3208,7 +3213,7 @@ * Event handler * @memberOf olexp.event * @param {object} listeners Initial listeners - * @public + * @private * @return {object} Handler. */ olexp.event.Event = function(listeners) { @@ -3223,6 +3228,7 @@ /** * @namespace olexp.item + * @private */ const olexp$5 = { item: {}, @@ -3240,7 +3246,7 @@ * Item icons * @enum {string} * @memberOf olexp.item - * @public + * @private * @readonly */ olexp.item.icons = { @@ -3608,7 +3614,7 @@ * @param {string} name Item name * @param {external:ol.layer.Layer|external:ol.Overlay} layer ol3 layer or * overlay object - * @public + * @private * @return {Item} Item to be managed. */ olexp.item.Item = function(id, name, layer) { @@ -3636,7 +3642,7 @@ * Enumeration of Overlay properties * @enum {string} * @memberOf olexp.item - * @public + * @private * @readonly */ olexp.item.OverlayProperties = { @@ -3646,7 +3652,7 @@ * Enumeration of Layer properties * @enum {string} * @memberOf olexp.item - * @public + * @private * @readonly */ olexp.item.LayerProperties = { @@ -3667,7 +3673,7 @@ * Enumeration of types of allowable managed items * @enum {string} * @memberOf olexp.item - * @public + * @private * @readonly */ olexp.item.Type = { @@ -3712,6 +3718,7 @@ /** * @namespace olexp.manager + * @private */ const olexp$6 = { event: olexpEvent, @@ -4123,7 +4130,7 @@ * @param {external:jQuery.fn.w2grid} details Details grid * @param {string} layers w2ui name of layers node * @param {string} overlays w2ui name of overlays node - * @public + * @private * @return {olexp.manager.ManagerAPI} */ olexp.manager.Manager = function(map, outline, details, layers, overlays) { @@ -4833,6 +4840,7 @@ /** * @namespace olexp.menu + * @private */ const olexp$7 = { menu: {}, @@ -5003,7 +5011,7 @@ * @memberOf olexp.menu * @param {olexp.manager.Manager} manager Explorer manager * @param {olexp.ExplorerSettings} settings olexp settings - * @public + * @private * @return {object} Properties menu item */ olexp.menu.properties = function(manager, settings) { @@ -5108,7 +5116,7 @@ * @memberOf olexp.menu * @param {olexp.manager.Manager} manager Explorer manager * @param {olexp.ExplorerSettings} settings olexp settings - * @public + * @private * @return {object} Remove menu item */ olexp.menu.remove = function(manager, settings) { @@ -5205,7 +5213,7 @@ * @memberOf olexp.menu * @param {olexp.manager.Manager} manager Explorer manager * @param {olexp.ExplorerSettings} settings olexp settings - * @public + * @private * @return {object} Zoom menu item. */ olexp.menu.zoom = function(manager, settings) { @@ -5232,6 +5240,7 @@ /** * @namespace olexp.selection + * @private */ const olexp$8 = { selection: {}, @@ -5309,7 +5318,7 @@ * @memberOf olexp.selection * @param {external:ol.Map} map Managed map * @param {external:jQuery.fn.w2grid} details Details grid - * @public + * @private * @return {olexp.selection.Feature} Feature selector */ olexp.selection.Feature = function(map, details) { diff --git a/docs/api/classes.list.html b/docs/api/classes.list.html index cd5d0b6..a9068d6 100644 --- a/docs/api/classes.list.html +++ b/docs/api/classes.list.html @@ -33,7 +33,7 @@ @@ -207,33 +207,6 @@

Namespaces

olexp
- -
control
-
- -
event
-
- -
item
-
- -
manager
-
- -
measure
-
- -
menu
-
- -
ol
-
- -
selection
-
- -
util
-
diff --git a/docs/api/external-jQuery.fn.html b/docs/api/external-jQuery.fn.html index 70cbb37..b27177a 100644 --- a/docs/api/external-jQuery.fn.html +++ b/docs/api/external-jQuery.fn.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-jQuery.html b/docs/api/external-jQuery.html index efbe9f1..fcccd1b 100644 --- a/docs/api/external-jQuery.html +++ b/docs/api/external-jQuery.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.Collection.html b/docs/api/external-ol.Collection.html index f935e59..ef20e0a 100644 --- a/docs/api/external-ol.Collection.html +++ b/docs/api/external-ol.Collection.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.Feature.html b/docs/api/external-ol.Feature.html index fb85715..ebad0e0 100644 --- a/docs/api/external-ol.Feature.html +++ b/docs/api/external-ol.Feature.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.Graticule.html b/docs/api/external-ol.Graticule.html index c4b2f5c..3f116bf 100644 --- a/docs/api/external-ol.Graticule.html +++ b/docs/api/external-ol.Graticule.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.Map.html b/docs/api/external-ol.Map.html index 03039e4..b36407d 100644 --- a/docs/api/external-ol.Map.html +++ b/docs/api/external-ol.Map.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.Overlay.html b/docs/api/external-ol.Overlay.html index 4d2262f..80fdb33 100644 --- a/docs/api/external-ol.Overlay.html +++ b/docs/api/external-ol.Overlay.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.View.html b/docs/api/external-ol.View.html index ded62c2..e2f2e14 100644 --- a/docs/api/external-ol.View.html +++ b/docs/api/external-ol.View.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.format.Feature.html b/docs/api/external-ol.format.Feature.html index bbd2dd1..6455d2a 100644 --- a/docs/api/external-ol.format.Feature.html +++ b/docs/api/external-ol.format.Feature.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.format.html b/docs/api/external-ol.format.html index 1294d4a..3c0ce9c 100644 --- a/docs/api/external-ol.format.html +++ b/docs/api/external-ol.format.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.html b/docs/api/external-ol.html index 3ee9f29..a32dfdb 100644 --- a/docs/api/external-ol.html +++ b/docs/api/external-ol.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.interaction.Select.html b/docs/api/external-ol.interaction.Select.html index ce94523..784dce7 100644 --- a/docs/api/external-ol.interaction.Select.html +++ b/docs/api/external-ol.interaction.Select.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.interaction.html b/docs/api/external-ol.interaction.html index af857e0..73ed239 100644 --- a/docs/api/external-ol.interaction.html +++ b/docs/api/external-ol.interaction.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.layer.Layer.html b/docs/api/external-ol.layer.Layer.html index 910f2b1..49b4aea 100644 --- a/docs/api/external-ol.layer.Layer.html +++ b/docs/api/external-ol.layer.Layer.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.layer.html b/docs/api/external-ol.layer.html index dacd2b2..a334fef 100644 --- a/docs/api/external-ol.layer.html +++ b/docs/api/external-ol.layer.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.style.Style.html b/docs/api/external-ol.style.Style.html index 4b9e7d4..e7f0ccb 100644 --- a/docs/api/external-ol.style.Style.html +++ b/docs/api/external-ol.style.Style.html @@ -33,7 +33,7 @@ diff --git a/docs/api/external-ol.style.html b/docs/api/external-ol.style.html index 4141d84..6ef2073 100644 --- a/docs/api/external-ol.style.html +++ b/docs/api/external-ol.style.html @@ -33,7 +33,7 @@ diff --git a/docs/api/externals.list.html b/docs/api/externals.list.html index b4ea80d..3fb7e32 100644 --- a/docs/api/externals.list.html +++ b/docs/api/externals.list.html @@ -33,7 +33,7 @@ @@ -207,33 +207,6 @@

Namespaces

olexp
- -
control
-
- -
event
-
- -
item
-
- -
manager
-
- -
measure
-
- -
menu
-
- -
ol
-
- -
selection
-
- -
util
-
diff --git a/docs/api/index.html b/docs/api/index.html index 16678c4..247dbd4 100644 --- a/docs/api/index.html +++ b/docs/api/index.html @@ -33,7 +33,7 @@ diff --git a/docs/api/namespaces.list.html b/docs/api/namespaces.list.html index 2057b68..588f575 100644 --- a/docs/api/namespaces.list.html +++ b/docs/api/namespaces.list.html @@ -33,7 +33,7 @@ @@ -207,33 +207,6 @@

Namespaces

olexp
- -
control
-
- -
event
-
- -
item
-
- -
manager
-
- -
measure
-
- -
menu
-
- -
ol
-
- -
selection
-
- -
util
-
diff --git a/docs/api/olexp.Explorer.html b/docs/api/olexp.Explorer.html index 6d4ee1f..e6867c1 100644 --- a/docs/api/olexp.Explorer.html +++ b/docs/api/olexp.Explorer.html @@ -33,7 +33,7 @@ diff --git a/docs/api/olexp.control.html b/docs/api/olexp.control.html deleted file mode 100644 index b734767..0000000 --- a/docs/api/olexp.control.html +++ /dev/null @@ -1,2623 +0,0 @@ - - - - - - - OpenLayers Explorer Namespace: control - - - - - - - - - - - - - -
-
- - -
- -
- - -

Namespace: control

-
- -
- -

- olexp. - - control -

- - -
- - -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - - - -

Methods

- -
- -
-
-

<static> editSettings(explorer, options)

- - -
-
- - -
-

Control to edit settings to enable/disable ol3 controls displayed on map.

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
explorer - - -olexp.Explorer - - - - -

Source explorer

options - - -object - - - - -

Control options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
settings - - -olexp.ExplorerSettings - - - - -

Explorer settings

- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

EditSettings toolbar -control

-
- - - -
-
- Type -
-
- -external:jQuery.fn.w2toolbar.properties - - - -
-
- - - - - -
- - - -
-
-

<static> exportMap(explorer, options)

- - -
-
- - -
-

Export map to image

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
explorer - - -olexp.Explorer - - - - -

Source explorer

options - - -object - - - - -

Control options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
settings - - -olexp.ExplorerSettings - - - - -

Explorer settings

- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

ExportMap toolbar -control

-
- - - -
-
- Type -
-
- -external:jQuery.fn.w2toolbar.properties - - - -
-
- - - - - -
- - - -
-
-

<static> graticule(explorer, options)

- - -
-
- - -
-

Control to edit grid lines.

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
explorer - - -olexp.Explorer - - - - -

Source Explorer

options - - -object - - - - -

Control options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
settings - - -olexp.ExplorerSettings - - - - -

Explorer settings

- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Graticule toolbar -control

-
- - - -
-
- Type -
-
- -external:jQuery.fn.w2toolbar.properties - - - -
-
- - - - - -
- - - -
-
-

<static> layerControl(explorer, options)

- - -
-
- - -
-

Control to add layers

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
explorer - - -olexp.Explorer - - - - -

Source Explorer

options - - -object - - - - -

Control options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
tile - - -boolean - - - - -

Enable tile control

vector - - -boolean - - - - -

Enable vector control

settings - - -olexp.ExplorerSettings - - - - -

Explorer settings

- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Array of w2toolbar properties

-
- - - -
-
- Type -
-
- -array - - - -
-
- - - - - -
- - - -
-
-

<static> layerManager(explorer, manager, options)

- - -
-
- - -
-

Control to manage layers

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
explorer - - -olexp.Explorer - - - - -

Explorer

manager - - -olexp.manager.Manager - - - - -

Explorer manager

options - - -object - - - - -

Control options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
details - - -object - - - - -

Enable details panel options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
enabled - - -boolean - - - - -

Enable details control

checked - - -boolean - - - - -

Indicate checked state

- -
down - - -boolean - - - - -

Enable down control

navigation - - -object - - - - -

Enable navigation options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
enabled - - -boolean - - - - -

Enable navigation control

checked - - -boolean - - - - -

Indicate checked state

- -
settings - - -olexp.ExplorerSettings - - - - -

Explorer settings

up - - -boolean - - - - -

Enable up control

- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Array of external:jQuery.fn.w2toolbar.properties

-
- - - -
-
- Type -
-
- -array - - - -
-
- - - - - -
- - - -
-
-

<static> layerMenu(explorer, manager, menu, options)

- - -
-
- - -
-

Display layer properties menu control

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
explorer - - -olexp.Explorer - - - - -

Source explorer

manager - - -olexp.manager.Manager - - - - -

Explorer manager

menu - - -object - - - - -

Item Menu items and callbacks

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
items - - -Array - - - - -

List of menu items

callbacks - - -Array - - - - -

List of menu item callbacks

- -
options - - -object - - - - -

Control options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
settings - - -olexp.ExplorerSettings - - - - -

Explorer settings

- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

LayerMenu toolbar -control

-
- - - -
-
- Type -
-
- -external:jQuery.fn.w2toolbar.properties - - - -
-
- - - - - -
- - - -
-
-

<static> measure(explorer, options)

- - -
-
- - -
-

Control to export map to image

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
explorer - - -olexp.Explorer - - - - -

Explorer

options - - -object - - - - -

Control options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
area - - -boolean - - - - -

Enable area measurement control

length - - -boolean - - - - -

Enable length measurement control

settings - - -olexp.ExplorerSettings - - - - -

Explorer settings

- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Array of w2toolbar properties

-
- - - -
-
- Type -
-
- -array - - - -
-
- - - - - -
- - - -
-
-

<static> toolbarHide(explorer, options)

- - -
-
- - -
-

Control to set toolbar visibility

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
explorer - - -olexp.Explorer - - - - -

Source Explorer

options - - -object - - - - -

Control options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
hidden - - -boolean - - - - -

True if toolbar is initially hidden

settings - - -olexp.ExplorerSettings - - - - -

Explorer settings

- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

ToolbarHide toolbar -control

-
- - - -
-
- Type -
-
- -external:jQuery.fn.w2toolbar.properties - - - -
-
- - - - - -
- -
- - - - - -
- -
- - - - -
-
- -
- - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/api/olexp.event.html b/docs/api/olexp.event.html deleted file mode 100644 index 53400c1..0000000 --- a/docs/api/olexp.event.html +++ /dev/null @@ -1,452 +0,0 @@ - - - - - - - OpenLayers Explorer Namespace: event - - - - - - - - - - - - - -
-
- - -
- -
- - -

Namespace: event

-
- -
- -

- olexp. - - event -

- - -
- - -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - - - -

Methods

- -
- -
-
-

<static> Event(listeners)

- - -
-
- - -
-

Event handler

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
listeners - - -object - - - - -

Initial listeners

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Handler.

-
- - - -
-
- Type -
-
- -object - - - -
-
- - - - - -
- -
- - - - - -
- -
- - - - -
-
- -
- - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/api/olexp.html b/docs/api/olexp.html index 07b1ebe..b48dd96 100644 --- a/docs/api/olexp.html +++ b/docs/api/olexp.html @@ -33,7 +33,7 @@ @@ -157,37 +157,6 @@

Classes

-

Namespaces

- -
-
control
-
- -
event
-
- -
item
-
- -
manager
-
- -
measure
-
- -
menu
-
- -
ol
-
- -
selection
-
- -
util
-
-
- diff --git a/docs/api/olexp.item.html b/docs/api/olexp.item.html deleted file mode 100644 index 27cabe0..0000000 --- a/docs/api/olexp.item.html +++ /dev/null @@ -1,1275 +0,0 @@ - - - - - - - OpenLayers Explorer Namespace: item - - - - - - - - - - - - - -
-
- - -
- -
- - -

Namespace: item

-
- -
- -

- olexp. - - item -

- - -
- - -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - -

Members

- -
- -
-
-

<static, readonly> icons :string

- - -
-
- -
-

Item icons

-
- - - -
Type:
-
    -
  • - -string - - - -
  • -
- - - -
- - -
Properties:
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDefaultDescription
group - - -string - - - - - - - olexp-item-group - -

Group icon css selector

heatmap - - -string - - - - - - - olexp-item-heatmap - -

Heat Map icon css selector

image - - -string - - - - - - - olexp-item-image - -

Image icon css selector

overlay - - -string - - - - - - - olexp-item-overlay - -

Overlay icon css selector

tile - - -string - - - - - - - olexp-item-tile - -

Tile Map icon css selector

vector - - -string - - - - - - - olexp-item-vector - -

Vector icon css selector

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - -
-
-

<static, readonly> LayerProperties :string

- - -
-
- -
-

Enumeration of Layer properties

-
- - - -
Type:
-
    -
  • - -string - - - -
  • -
- - - -
- - -
Properties:
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDefaultDescription
opacity - - -object - - - - - - - {"title":"Opacity"} - -

Opacity property

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - -
-
-

<static, readonly> OverlayProperties :string

- - -
-
- -
-

Enumeration of Overlay properties

-
- - - -
Type:
-
    -
  • - -string - - - -
  • -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - -
-
-

<static, readonly> Type :string

- - -
-
- -
-

Enumeration of types of allowable managed items

-
- - - -
Type:
-
    -
  • - -string - - - -
  • -
- - - -
- - -
Properties:
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDefaultDescription
GROUP - - -number - - - - - - - 0 - -

Group managed item

HEATMAP - - -number - - - - - - - 1 - -

Heat Map managed item

IMAGE - - -number - - - - - - - 2 - -

Image managed item

OVERLAY - - -number - - - - - - - 3 - -

Overlay managed item

TILE - - -number - - - - - - - 4 - -

Tile managed item

VECTOR - - -number - - - - - - - 5 - -

Vector managed item

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- -
- - - -

Methods

- -
- -
-
-

<static> Item(id, name, layer)

- - -
-
- - -
-

Item managed

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
id - - -string - - - - -

Item ID

name - - -string - - - - -

Item name

layer - - -external:ol.layer.Layer -| - -external:ol.Overlay - - - - -

ol3 layer or -overlay object

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Item to be managed.

-
- - - -
-
- Type -
-
- -Item - - - -
-
- - - - - -
- -
- - - - - -
- -
- - - - -
-
- -
- - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/api/olexp.manager.html b/docs/api/olexp.manager.html deleted file mode 100644 index 45397c8..0000000 --- a/docs/api/olexp.manager.html +++ /dev/null @@ -1,769 +0,0 @@ - - - - - - - OpenLayers Explorer Namespace: manager - - - - - - - - - - - - - -
-
- - -
- -
- - -

Namespace: manager

-
- -
- -

- olexp. - - manager -

- - -
- - -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - - - -

Methods

- -
- -
-
-

<static> Manager(map, outline, details, layers, overlays)

- - -
-
- - -
-

Item manager that synchronizes adding and removing items from the map -sidebar and the corresponding layers on the ol3 map

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
map - - -external:ol.Map - - - - -

Managed map

outline - - -external:jQuery.fn.w2sidebar - - - - -

Managed outline sidebar

details - - -external:jQuery.fn.w2grid - - - - -

Details grid

layers - - -string - - - - -

w2ui name of layers node

overlays - - -string - - - - -

w2ui name of overlays node

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - - - -
-
- Type -
-
- -olexp.manager.ManagerAPI - - - -
-
- - - - - -
- - - -
-
-

<static> NodeManager(id, map, outline, details)

- - -
-
- - -
-

Node manager that synchronizes adding and removing items

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
id - - -string - - - - -

Node id

map - - -external:ol.Map - - - - -

Managed map

outline - - -external:jQuery.fn.w2sidebar - - - - -

Managed outline sidebar

details - - -external:jQuery.fn.w2grid - - - - -

Details grid

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

NodeManager instance.

-
- - - -
-
- Type -
-
- -function - - - -
-
- - - - - -
- -
- - - - - -
- -
- - - - -
-
- -
- - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/api/olexp.measure.html b/docs/api/olexp.measure.html deleted file mode 100644 index 5838d51..0000000 --- a/docs/api/olexp.measure.html +++ /dev/null @@ -1,938 +0,0 @@ - - - - - - - OpenLayers Explorer Namespace: measure - - - - - - - - - - - - - -
-
- - -
- -
- - -

Namespace: measure

-
- -
- -

- olexp. - - measure -

- - -
- - -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - -

Members

- -
- -
-
-

<static> Overlay

- - -
-
- -
-

Measurement tool overlay

-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - -
-
-

<static, readonly> properties :string

- - -
-
- -
-

Enumeration of item measurements types. Key where measurement is stored.

-
- - - -
Type:
-
    -
  • - -string - - - -
  • -
- - - -
- - -
Properties:
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDefaultDescription
area - - -string - - - - - - - olexp-measure-property-area - -

Area measurement property name

length - - -string - - - - - - - olexp-measure-property-length - -

Length measurement property name

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - -
-
-

<static, readonly> Type :string

- - -
-
- -
-

Enumeration of allowable measurement types

-
- - - -
Type:
-
    -
  • - -string - - - -
  • -
- - - -
- - -
Properties:
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDefaultDescription
AREA - - -string - - - - - - - Polygon - -

Area measurement type

LINE - - -string - - - - - - - LineString - -

Line measurement type

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- -
- - - -

Methods

- -
- -
-
-

<static> Tool(map, options)

- - -
-
- - -
-

Measurement tool

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
map - - -external:ol.Map - - - - -

Source map

options - - -Object - - - - -

Measurement options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
type - - -olexp.measure.Type - - - - -

Type of measurement to compute

settings - - -olexp.ExplorerSettings - - - - -

Explorer settings

- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

measure.Tool API.

-
- - - -
-
- Type -
-
- -object - - - -
-
- - - - - -
- -
- - - - - -
- -
- - - - -
-
- -
- - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/api/olexp.menu.html b/docs/api/olexp.menu.html deleted file mode 100644 index abf12f9..0000000 --- a/docs/api/olexp.menu.html +++ /dev/null @@ -1,828 +0,0 @@ - - - - - - - OpenLayers Explorer Namespace: menu - - - - - - - - - - - - - -
-
- - -
- -
- - -

Namespace: menu

-
- -
- -

- olexp. - - menu -

- - -
- - -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - - - -

Methods

- -
- -
-
-

<static> properties(manager, settings)

- - -
-
- - -
-

Properties menu item

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
manager - - -olexp.manager.Manager - - - - -

Explorer manager

settings - - -olexp.ExplorerSettings - - - - -

olexp settings

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Properties menu item

-
- - - -
-
- Type -
-
- -object - - - -
-
- - - - - -
- - - -
-
-

<static> remove(manager, settings)

- - -
-
- - -
-

Remove menu item

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
manager - - -olexp.manager.Manager - - - - -

Explorer manager

settings - - -olexp.ExplorerSettings - - - - -

olexp settings

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Remove menu item

-
- - - -
-
- Type -
-
- -object - - - -
-
- - - - - -
- - - -
-
-

<static> zoom(manager, settings)

- - -
-
- - -
-

Zoom menu item

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
manager - - -olexp.manager.Manager - - - - -

Explorer manager

settings - - -olexp.ExplorerSettings - - - - -

olexp settings

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Zoom menu item.

-
- - - -
-
- Type -
-
- -object - - - -
-
- - - - - -
- -
- - - - - -
- -
- - - - -
-
- -
- - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/api/olexp.ol.html b/docs/api/olexp.ol.html deleted file mode 100644 index 76d2fc6..0000000 --- a/docs/api/olexp.ol.html +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - OpenLayers Explorer Namespace: ol - - - - - - - - - - - - - -
-
- - -
- -
- - -

Namespace: ol

-
- -
- -

- olexp. - - ol -

- - -
- - -
-
- - -

olexp specific OpenLayers 3 classes

- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - - - -

Methods

- -
- -
-
-

<static> toolbarShow(explorer, options)

- - -
-
- - -
-

Control to set toolbar visibility

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
explorer - - -olexp.Explorer - - - - -

Source explorer

options - - -object - - - - -

Control options

-
Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
hidden - - -boolean - - - - -

True if toolbar is initially hidden

settings - - -olexp.ExplorerSettings - - - - -

Explorer settings

- -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

ToolbarShow toolbar -control

-
- - - -
-
- Type -
-
- -external:jQuery.fn.w2toolbar.properties - - - -
-
- - - - - -
- -
- - - - - -
- -
- - - - -
-
- -
- - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/api/olexp.selection.html b/docs/api/olexp.selection.html deleted file mode 100644 index b578c58..0000000 --- a/docs/api/olexp.selection.html +++ /dev/null @@ -1,604 +0,0 @@ - - - - - - - OpenLayers Explorer Namespace: selection - - - - - - - - - - - - - -
-
- - -
- -
- - -

Namespace: selection

-
- -
- -

- olexp. - - selection -

- - -
- - -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - - - -

Methods

- -
- -
-
-

<static> Feature(map, details)

- - -
-
- - -
-

Selection tool

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
map - - -external:ol.Map - - - - -

Managed map

details - - -external:jQuery.fn.w2grid - - - - -

Details grid

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Feature selector

-
- - - -
-
- Type -
-
- -olexp.selection.Feature - - - -
-
- - - - - -
- -
- - - -

Type Definitions

- -
- -
-
-

Feature

- - -
-
- -
-

The objects exposed by the olexp.selection.Feature API

-
- - - -
Type:
-
    -
  • - -object - - - -
  • -
- - - -
- - -
Properties:
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
setEnable - - -function - - - - -

Enable/disable feature selection

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- -
- - - -
- -
- - - - -
-
- -
- - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/api/olexp.util.html b/docs/api/olexp.util.html deleted file mode 100644 index bf34168..0000000 --- a/docs/api/olexp.util.html +++ /dev/null @@ -1,1532 +0,0 @@ - - - - - - - OpenLayers Explorer Namespace: util - - - - - - - - - - - - - -
-
- - -
- -
- - -

Namespace: util

-
- -
- -

- olexp. - - util -

- - -
- - -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - -

Members

- -
- -
-
-

<static, readonly> FileTypes

- - -
-
- -
-

Supported ol3 file types

-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- -
- - - -

Methods

- -
- -
-
-

<static> getReader(filename)

- - -
-
- - -
-

Find feature reader based on filename extension

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
filename - - -string - - - - -

Filename to be read

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

File reader

-
- - - -
-
- Type -
-
- -external:ol.format.Feature -| - -null - - - -
-
- - - - - -
- - - -
-
-

<static> indexOf(layers, layer)

- - -
-
- - -
-

Returns the index of the layer within the collection.

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
layers - - -external:ol.Collection - - - - -

Map layers

layer - - -external:ol.layer.Layer -| - -external:ol.Overlay - - - - -

Layer to find

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Index of layer

-
- - - -
-
- Type -
-
- -number - - - -
-
- - - - - -
- - - -
-
-

<static> popup(id, onChanges, formOptions, popupOptions)

- - -
-
- - -
-

Create and process popup form

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
id - - -string - - - - -

DOM id

onChanges - - -function - - - - -

Function that processes w2ui form changes

formOptions - - -external:jQuery.fn.w2form.properties - - - - -

w2form -properties

popupOptions - - -external:jQuery.fn.w2popup.properties - - - - -

w2popup -properties

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- - - -
-
-

<static> setExtension(filename, extension)

- - -
-
- - -
-

Set new extension of filename

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
filename - - -string - - - - -

Filename whose extension will be replaced

extension - - -string - - - - -

New extension (including dot)

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

New filename with extension replaced

-
- - - -
-
- Type -
-
- -string - - - -
-
- - - - - -
- - - -
-
-

<static> toProperties(feature)

- - -
-
- - -
-

Get properties from feature accounting for clustered features

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
feature - - -external:ol.Feature - - - - -

Source feature

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Feature properties

-
- - - -
-
- Type -
-
- -object - - - -
-
- - - - - -
- - - -
-
-

<static> toRecords(properties)

- - -
-
- - -
-

Convert properties object to record for w2ui grid

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
properties - - -object - - - - -

Object properties to convert to grid record

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Properties in record format

-
- - - -
-
- Type -
-
- -array - - - -
-
- - - - - -
- - - -
-
-

<static> Util(settings)

- - -
-
- - -
-

Utility functions

-
- - - - - - - - -
Parameters:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeDescription
settings - - -olexp.ExplorerSettings - - - - -

olexp settings

- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - -
Returns:
- - -
-

Utility API.

-
- - - -
-
- Type -
-
- -object - - - -
-
- - - - - -
- -
- - - - - -
- -
- - - - -
-
- -
- - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/api/quicksearch.html b/docs/api/quicksearch.html index d193ef1..b293877 100644 --- a/docs/api/quicksearch.html +++ b/docs/api/quicksearch.html @@ -7,7 +7,7 @@