mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
parent
f629dd2c37
commit
b797f83b4f
5 changed files with 12 additions and 5 deletions
|
@ -51,7 +51,7 @@ export class AbstractLayer {
|
|||
}
|
||||
|
||||
isJoinable() {
|
||||
return false;
|
||||
return this._source.isJoinable();
|
||||
}
|
||||
|
||||
async getDisplayName() {
|
||||
|
|
|
@ -113,6 +113,10 @@ export class ESGeoGridSource extends AbstractESSource {
|
|||
return true;
|
||||
}
|
||||
|
||||
isJoinable() {
|
||||
return false;
|
||||
}
|
||||
|
||||
getGridResolution() {
|
||||
return this._descriptor.resolution;
|
||||
}
|
||||
|
|
|
@ -89,6 +89,10 @@ export class AbstractSource {
|
|||
getGeoGridPrecision() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
isJoinable() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -102,4 +102,7 @@ export class AbstractVectorSource extends AbstractSource {
|
|||
return false;
|
||||
}
|
||||
|
||||
isJoinable() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -67,10 +67,6 @@ export class VectorLayer extends AbstractLayer {
|
|||
});
|
||||
}
|
||||
|
||||
isJoinable() {
|
||||
return true;
|
||||
}
|
||||
|
||||
getJoins() {
|
||||
return this._joins.slice();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue