Skip to content

Commit

Permalink
Fix layer type name to new convention (#121218)
Browse files Browse the repository at this point in the history
  • Loading branch information
qn895 authored Dec 14, 2021
1 parent 3f321d1 commit bd58008
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import { Feature, Point } from 'geojson';
import { euiPaletteColorBlind } from '@elastic/eui';
import { DEFAULT_GEO_REGEX } from './geo_point_content';
import { SOURCE_TYPES } from '../../../../../../../maps/common';
import { LAYER_TYPE, SOURCE_TYPES } from '../../../../../../../maps/common';

export const convertWKTGeoToLonLat = (
value: string | number
Expand Down Expand Up @@ -72,6 +72,6 @@ export const getGeoPointsLayer = (
},
},
},
type: 'VECTOR',
type: LAYER_TYPE.GEOJSON_VECTOR,
};
};

0 comments on commit bd58008

Please sign in to comment.