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

[7.9] [Backport] [Maps] Custom color ramps should show correctly on the map for mvt layers #74292

Merged
merged 2 commits into from
Aug 4, 2020
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
4 changes: 4 additions & 0 deletions x-pack/plugins/maps/public/classes/fields/es_agg_field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ export class ESAggField implements IESAggField {
supportsAutoDomain(): boolean {
return true;
}

canReadFromGeoJson(): boolean {
return true;
}
}

export function esAggFieldsFactory(
Expand Down
9 changes: 9 additions & 0 deletions x-pack/plugins/maps/public/classes/fields/field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ export interface IField {
// then styling properties that require the domain to be known cannot use this property.
supportsAutoDomain(): boolean;

// Determinse wheter Maps-app can automatically deterime the domain of the field-values
// _without_ having to retrieve the data as GeoJson
// e.g. for ES-sources, this would use the extended_stats API
supportsFieldMeta(): boolean;

canReadFromGeoJson(): boolean;
}

export class AbstractField implements IField {
Expand Down Expand Up @@ -90,4 +95,8 @@ export class AbstractField implements IField {
supportsAutoDomain(): boolean {
return true;
}

canReadFromGeoJson(): boolean {
return true;
}
}
4 changes: 4 additions & 0 deletions x-pack/plugins/maps/public/classes/fields/mvt_field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,8 @@ export class MVTField extends AbstractField implements IField {
supportsAutoDomain() {
return false;
}

canReadFromGeoJson(): boolean {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,8 @@ export class TopTermPercentageField implements IESAggField {
canValueBeFormatted(): boolean {
return false;
}

canReadFromGeoJson(): boolean {
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { DynamicStyleProperty } from './dynamic_style_property';
import { makeMbClampedNumberExpression, dynamicRound } from '../style_util';
import { getOrdinalMbColorRampStops, getColorPalette } from '../../color_palettes';
import React from 'react';
import { COLOR_MAP_TYPE, MB_LOOKUP_FUNCTION } from '../../../../../common/constants';
import { COLOR_MAP_TYPE } from '../../../../../common/constants';
import {
isCategoricalStopsInvalid,
getOtherCategoryLabel,
Expand Down Expand Up @@ -91,10 +91,6 @@ export class DynamicColorProperty extends DynamicStyleProperty {
return colors ? colors.length : 0;
}

supportsMbFeatureState() {
return true;
}

_getMbColor() {
if (!this._field || !this._field.getName()) {
return null;
Expand All @@ -120,7 +116,7 @@ export class DynamicColorProperty extends DynamicStyleProperty {
const lessThanFirstStopValue = firstStopValue - 1;
return [
'step',
['coalesce', ['feature-state', targetName], lessThanFirstStopValue],
['coalesce', [this.getMbLookupFunction(), targetName], lessThanFirstStopValue],
RGBA_0000, // MB will assign the base value to any features that is below the first stop value
...colorStops,
];
Expand All @@ -146,7 +142,7 @@ export class DynamicColorProperty extends DynamicStyleProperty {
makeMbClampedNumberExpression({
minValue: rangeFieldMeta.min,
maxValue: rangeFieldMeta.max,
lookupFunction: MB_LOOKUP_FUNCTION.FEATURE_STATE,
lookupFunction: this.getMbLookupFunction(),
fallback: lessThanFirstStopValue,
fieldName: targetName,
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,15 @@ describe('get mapbox color expression (via internal _getMbColor)', () => {
});

describe('custom color ramp', () => {
const dynamicStyleOptions = {
type: COLOR_MAP_TYPE.ORDINAL,
useCustomColorRamp: true,
customColorRamp: [
{ stop: 10, color: '#f7faff' },
{ stop: 100, color: '#072f6b' },
],
};

test('should return null when customColorRamp is not provided', async () => {
const dynamicStyleOptions = {
type: COLOR_MAP_TYPE.ORDINAL,
Expand All @@ -362,15 +371,7 @@ describe('get mapbox color expression (via internal _getMbColor)', () => {
expect(colorProperty._getMbColor()).toBeNull();
});

test('should return mapbox expression for custom color ramp', async () => {
const dynamicStyleOptions = {
type: COLOR_MAP_TYPE.ORDINAL,
useCustomColorRamp: true,
customColorRamp: [
{ stop: 10, color: '#f7faff' },
{ stop: 100, color: '#072f6b' },
],
};
test('should use `feature-state` by default', async () => {
const colorProperty = makeProperty(dynamicStyleOptions);
expect(colorProperty._getMbColor()).toEqual([
'step',
Expand All @@ -382,6 +383,23 @@ describe('get mapbox color expression (via internal _getMbColor)', () => {
'#072f6b',
]);
});

test('should use `get` when source cannot return raw geojson', async () => {
const field = Object.create(mockField);
field.canReadFromGeoJson = function () {
return false;
};
const colorProperty = makeProperty(dynamicStyleOptions, undefined, field);
expect(colorProperty._getMbColor()).toEqual([
'step',
['coalesce', ['get', 'foobar'], 9],
'rgba(0,0,0,0)',
10,
'#f7faff',
100,
'#072f6b',
]);
});
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class DynamicSizeProperty extends DynamicStyleProperty {
return false;
}

return true;
return super.supportsMbFeatureState();
}

syncHaloWidthWithMb(mbLayerId, mbMap) {
Expand Down Expand Up @@ -109,17 +109,13 @@ export class DynamicSizeProperty extends DynamicStyleProperty {
}

_getMbDataDrivenSize({ targetName, minSize, maxSize, minValue, maxValue }) {
const lookup = this.supportsMbFeatureState()
? MB_LOOKUP_FUNCTION.FEATURE_STATE
: MB_LOOKUP_FUNCTION.GET;

const stops =
minValue === maxValue ? [maxValue, maxSize] : [minValue, minSize, maxValue, maxSize];
return [
'interpolate',
['linear'],
makeMbClampedNumberExpression({
lookupFunction: lookup,
lookupFunction: this.getMbLookupFunction(),
maxValue,
minValue,
fieldName: targetName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ import _ from 'lodash';
import { AbstractStyleProperty } from './style_property';
import { DEFAULT_SIGMA } from '../vector_style_defaults';
import {
STYLE_TYPE,
SOURCE_META_DATA_REQUEST_ID,
FIELD_ORIGIN,
MB_LOOKUP_FUNCTION,
SOURCE_META_DATA_REQUEST_ID,
STYLE_TYPE,
} from '../../../../../common/constants';
import React from 'react';
import { OrdinalFieldMetaPopover } from '../components/field_meta/ordinal_field_meta_popover';
Expand Down Expand Up @@ -150,7 +151,13 @@ export class DynamicStyleProperty extends AbstractStyleProperty {
}

supportsMbFeatureState() {
return true;
return !!this._field && this._field.canReadFromGeoJson();
}

getMbLookupFunction() {
return this.supportsMbFeatureState()
? MB_LOOKUP_FUNCTION.FEATURE_STATE
: MB_LOOKUP_FUNCTION.GET;
}

getFieldMetaOptions() {
Expand Down