Skip to content
Merged
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
37 changes: 36 additions & 1 deletion src/components/FlatmapVuer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,7 @@ export default {
},
/**
* Function to highlight paths and features
* @param data
* @param data
*/
zoomToFeatures: function (data) {
if (this.mapImp) {
Expand Down Expand Up @@ -1707,6 +1707,7 @@ export default {
}
}
const clickedItem = singleSelection ? data : data[0]
this.setConnectivityDataSource(this.viewingMode, clickedItem);
if (this.viewingMode === 'Neuron Connection') {
this.retrieveConnectedPaths([clickedItem.models]).then((paths) => {
this.zoomToFeatures(paths)
Expand Down Expand Up @@ -1756,6 +1757,23 @@ export default {
}
}
},
/**
* The data for connectivity data source is just a placeholder data
* to check which part of the map is clicked, e.g., path or feture or empty area,
* based on the viewing mode.
* The "connectivity-info-close" event will be emitted based on this data
* when there has a click event on map.
* @param viewingMode
* @param data
*/
setConnectivityDataSource: function (viewingMode, data) {
// for Exploration mode, only path click will be used as data source
this.connectivityDataSource = data.source;
// for other modes, it can be feature or path
if (viewingMode === 'Neuron Connection' || viewingMode === 'Annotation') {
this.connectivityDataSource = data.featureId;
}
},
/**
* @public
* Function triggered by viewing mode change.
Expand Down Expand Up @@ -2697,13 +2715,30 @@ export default {
this.loading = false
this.computePathControlsMaximumHeight()
this.mapResize()
this.handleMapClick();
this.setInitMapState();
/**
* This is ``onFlatmapReady`` event.
* @arg ``this`` (Component Vue Instance)
*/
this.$emit('ready', this)
},
/**
* @public
* Function to handle mouse click on map area
* after the map is loaded.
*/
handleMapClick: function () {
const _map = this.mapImp.map;
if (_map) {
_map.on('click', (e) => {
if (!this.connectivityDataSource) {
this.$emit('connectivity-info-close');
}
this.connectivityDataSource = ''; // reset
});
}
},
/**
* @public
* Function to show or hide the minimap
Expand Down