Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a visible() and selectionAPI() functions to layers. #682

Merged
merged 3 commits into from
Apr 13, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 33 additions & 10 deletions src/feature.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ var feature = function (arg) {

// Don't bind handlers for improved performance on features that don't
// require it.
if (!m_selectionAPI) {
if (!this.selectionAPI()) {
return;
}

Expand Down Expand Up @@ -413,24 +413,37 @@ var feature = function (arg) {
////////////////////////////////////////////////////////////////////////////
/**
* Get/Set visibility of the feature
*
* @param {boolean|undefined} val: undefined to return the visibility, a
* boolean to change the visibility.
* @param {boolean} direct: if true, when getting the visibility, disregard
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use of direct in two different ways is little confusing but I see a reason.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

direct is only ever passed internally -- the user should never have to reference it. It is only so we know what the base visibility of a feature is regardless of the layer.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

right but I could see a use-case (perhaps more complicated) where a user would like to know the visible state of a feature not w.r.t to its parent. But I agree that most likely they would just query the state w.r.t parent.

* the visibility of the parent layer, and when setting, refresh the state
* regardless of whether it has changed or not.
* @return {boolean|object} either the visibility (if getting) or the feature
* (if setting).
*/
////////////////////////////////////////////////////////////////////////////
this.visible = function (val) {
this.visible = function (val, direct) {
if (val === undefined) {
if (!direct && m_layer && m_layer.visible && !m_layer.visible()) {
return false;
}
return m_visible;
}
if (m_visible !== val) {
if (m_visible !== val || direct) {
m_visible = val;
m_this.modified();

if (m_layer && m_layer.visible && !m_layer.visible()) {
val = false;
}
// bind or unbind mouse handlers on visibility change
if (m_visible) {
if (val) {
m_this._bindMouseHandlers();
} else {
m_this._unbindMouseHandlers();
}
for (var i = 0; i < m_dependentFeatures.length; i += 1) {
m_dependentFeatures[i].visible(val);
m_dependentFeatures[i].visible(m_visible, direct);
}
}
return m_this;
Expand Down Expand Up @@ -532,16 +545,26 @@ var feature = function (arg) {

////////////////////////////////////////////////////////////////////////////
/**
* Query or set if the selection API is enabled for this feature.
* @returns {bool}
* Get/Set if the selection API is enabled for this feature.
*
* @param {boolean|undefined} val: undefined to return the selectionAPI
* state, or a boolean to change the state.
* @param {boolean} direct: if true, when getting the selectionAPI state,
* disregard the state of the parent layer, and when setting, refresh the
* state regardless of whether it has changed or not.
* @return {boolean|object} either the selectionAPI state (if getting) or the
* feature (if setting).
*/
////////////////////////////////////////////////////////////////////////////
this.selectionAPI = function (arg) {
this.selectionAPI = function (arg, direct) {
if (arg === undefined) {
if (!direct && m_layer && m_layer.selectionAPI && !m_layer.selectionAPI()) {
return false;
}
return m_selectionAPI;
}
arg = !!arg;
if (arg !== m_selectionAPI) {
if (arg !== m_selectionAPI || direct) {
m_selectionAPI = arg;
this._unbindMouseHandlers();
this._bindMouseHandlers();
Expand Down
73 changes: 67 additions & 6 deletions src/featureLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ var featureLayer = function (arg) {
s_init = this._init,
s_exit = this._exit,
s_update = this._update,
s_visible = this.visible,
s_selectionAPI = this.selectionAPI,
s_draw = this.draw;

////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -231,13 +233,72 @@ var featureLayer = function (arg) {
*/
////////////////////////////////////////////////////////////////////////////
this.draw = function () {
// Call sceneObject.draw, which calls draw on all child objects.
s_draw();
if (m_this.visible()) {
// Call sceneObject.draw, which calls draw on all child objects.
s_draw();

// Now call render on the renderer. In certain cases it may not do
// anything if the if the child objects are drawn on the screen already.
if (m_this.renderer()) {
m_this.renderer()._render();
// Now call render on the renderer. In certain cases it may not do
// anything if the child objects are drawn on the screen already.
if (m_this.renderer()) {
m_this.renderer()._render();
}
}
return m_this;
};

////////////////////////////////////////////////////////////////////////////
/**
* Get/Set visibility of the layer
*
* @param {boolean|undefined} val: undefined to return the visibility, a
* boolean to change the visibility.
* @return {boolean|object} either the visibility (if getting) or the layer
* (if setting).
*/
////////////////////////////////////////////////////////////////////////////
this.visible = function (val) {
if (val === undefined) {
return s_visible();
}
if (m_this.visible() !== val) {
s_visible(val);

// take a copy of the features; changing visible could mutate them.
var features = m_features.slice(), i;

for (i = 0; i < features.length; i += 1) {
features[i].visible(features[i].visible(undefined, true), true);
}
if (val) {
m_this.draw();
}
}
return m_this;
};

////////////////////////////////////////////////////////////////////////////
/**
* Get/Set selectionAPI of the layer
*
* @param {boolean|undefined} val: undefined to return the selectionAPI
* state, or a boolean to change it.
* @return {boolean|object} either the selectionAPI state (if getting) or the
* layer (if setting).
*/
////////////////////////////////////////////////////////////////////////////
this.selectionAPI = function (val) {
if (val === undefined) {
return s_selectionAPI();
}
if (m_this.selectionAPI() !== val) {
s_selectionAPI(val);

// take a copy of the features; changing selectionAPI could mutate them.
var features = m_features.slice(), i;

for (i = 0; i < features.length; i += 1) {
features[i].selectionAPI(features[i].selectionAPI(undefined, true), true);
}
}
return m_this;
};
Expand Down
4 changes: 2 additions & 2 deletions src/gl/quadFeature.js
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,11 @@ var gl_quadFeature = function (arg) {
m_this._build();
}
if (m_actor_color) {
m_actor_color.setVisible(m_this.visible());
m_actor_color.setVisible(m_this.visible(undefined, true));
m_actor_color.material().setBinNumber(m_this.bin());
}
if (m_actor_image) {
m_actor_image.setVisible(m_this.visible());
m_actor_image.setVisible(m_this.visible(undefined, true));
m_actor_image.material().setBinNumber(m_this.bin());
}
m_this.updateTime().modified();
Expand Down
61 changes: 56 additions & 5 deletions src/layer.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ var layer = function (arg) {
m_active = arg.active === undefined ? true : arg.active,
m_opacity = arg.opacity === undefined ? 1 : arg.opacity,
m_attribution = arg.attribution || null,
m_visible = arg.visible === undefined ? true : arg.visible,
m_selectionAPI = arg.selectionAPI === undefined ? true : arg.selectionAPI,
m_zIndex;

m_rendererName = checkRenderer(m_rendererName);
Expand Down Expand Up @@ -192,20 +194,27 @@ var layer = function (arg) {

////////////////////////////////////////////////////////////////////////////
/**
* Get whether or not the layer is active. An active layer will receive
* Get/Set whether or not the layer is active. An active layer will receive
* native mouse when the layer is on top. Non-active layers will never
* receive native mouse events.
*
* @returns {Boolean}
* @returns {Boolean|object}
*/
////////////////////////////////////////////////////////////////////////////
this.active = function () {
return m_active;
this.active = function (arg) {
if (arg === undefined) {
return m_active;
}
if (m_active !== arg) {
m_active = arg;
m_node.toggleClass('active', m_active);
}
return this;
};

////////////////////////////////////////////////////////////////////////////
/**
* Get/Set root node of the layer
* Get root node of the layer
*
* @returns {div}
*/
Expand Down Expand Up @@ -352,6 +361,48 @@ var layer = function (arg) {
return m_attribution;
};

////////////////////////////////////////////////////////////////////////////
/**
* Get/Set visibility of the layer
*
* @param {boolean|undefined} val: undefined to return the visibility, a
* boolean to change the visibility.
* @return {boolean|object} either the visibility (if getting) or the layer
* (if setting).
*/
////////////////////////////////////////////////////////////////////////////
this.visible = function (val) {
if (val === undefined) {
return m_visible;
}
if (m_visible !== val) {
m_visible = val;
m_node.css('display', m_visible ? '' : 'none');
m_this.modified();
}
return m_this;
};

////////////////////////////////////////////////////////////////////////////
/**
* Get/Set selectionAPI of the layer
*
* @param {boolean|undefined} val: undefined to return the selectionAPI
* state, or a boolean to change it.
* @return {boolean|object} either the selectionAPI state (if getting) or the
* layer (if setting).
*/
////////////////////////////////////////////////////////////////////////////
this.selectionAPI = function (val) {
if (val === undefined) {
return m_selectionAPI;
}
if (m_selectionAPI !== val) {
m_selectionAPI = val;
}
return m_this;
};

////////////////////////////////////////////////////////////////////////////
/**
* Init layer
Expand Down
11 changes: 6 additions & 5 deletions src/pixelmapFeature.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,13 +339,14 @@ var pixelmapFeature = function (arg) {
m_quadFeature = m_this.layer().createFeature('quad', {
selectionAPI: false,
gcs: m_this.gcs(),
visible: m_this.visible()
visible: m_this.visible(undefined, true)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it would have been nice to just call it like m_this.visible(true). Should we switch the args placeholder?

Copy link
Member

@aashish24 aashish24 Apr 13, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

but that means that the user would have to provide answer to direct in their call, unless they are okay with passing undefined for direct in their code.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The user just uses m_this.visible(true). This is just done, because we don't want to change the state of visibility based on the level.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Roger that, on the same page.

});
m_this.dependentFeatures([m_quadFeature]);
m_quadFeature.style({image: m_info.canvas,
position: m_this.style.get('position')})
.data([{}])
.draw();
m_quadFeature.style({
image: m_info.canvas,
position: m_this.style.get('position')})
.data([{}])
.draw();
}
/* If we prepared the pixelmap and rendered it, send a prepared event */
if (prepared) {
Expand Down
2 changes: 1 addition & 1 deletion src/polygonFeature.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ var polygonFeature = function (arg) {
m_lineFeature = m_this.layer().createFeature('line', {
selectionAPI: false,
gcs: m_this.gcs(),
visible: m_this.visible()
visible: m_this.visible(undefined, true)
});
m_this.dependentFeatures([m_lineFeature]);
}
Expand Down
38 changes: 33 additions & 5 deletions src/tileLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@ module.exports = (function () {
*/
//////////////////////////////////////////////////////////////////////////////
var tileLayer = function (options) {
'use strict';
if (!(this instanceof tileLayer)) {
return new tileLayer(options);
}
featureLayer.call(this, options);

var $ = require('jquery');
var geo_event = require('./event');
Expand All @@ -147,11 +152,6 @@ module.exports = (function () {
var adjustLayerForRenderer = require('./registry').adjustLayerForRenderer;
var Tile = require('./tile');

if (!(this instanceof tileLayer)) {
return new tileLayer(options);
}
featureLayer.call(this, options);

options = $.extend(true, {}, this.constructor.defaults, options || {});
if (!options.cacheSize) {
// this size should be sufficient for a 4k display
Expand All @@ -177,6 +177,7 @@ module.exports = (function () {

var s_init = this._init,
s_exit = this._exit,
s_visible = this.visible,
m_lastTileSet = [],
m_maxBounds = [],
m_exited;
Expand Down Expand Up @@ -1063,6 +1064,9 @@ module.exports = (function () {
evt.event.event === geo_event.rotate)) {
return;
}
if (!this.visible()) {
return;
}
var map = this.map(),
bounds = map.bounds(undefined, null),
mapZoom = map.zoom(),
Expand Down Expand Up @@ -1430,6 +1434,30 @@ module.exports = (function () {
return m_tileOffsetValues[level];
};

////////////////////////////////////////////////////////////////////////////
/**
* Get/Set visibility of the layer
*
* @param {boolean|undefined} val: undefined to return the visibility, a
* boolean to change the visibility.
* @return {boolean|object} either the visibility (if getting) or the layer
* (if setting).
*/
////////////////////////////////////////////////////////////////////////////
this.visible = function (val) {
if (val === undefined) {
return s_visible();
}
if (this.visible() !== val) {
s_visible(val);

if (val) {
this._update();
}
}
return this;
};

/**
* Initialize after the layer is added to the map.
*/
Expand Down
Loading