import type { ExtractPropTypes, PropType } from 'vue'; import type ImageLayer from './image-layer.vue'; export declare const imageLayerProps: { url: { type: StringConstructor; required: boolean; }; /** * 图片四个角的经纬度数组,顺序:左上、右上、右下、左下 * The latitude and longitude array of the four corners of the image, in the following order: top left, top right, bottom right, bottom left * eg:[ [-80.425, 46.437], [-71.516, 46.437], [-71.516, 37.936], [-80.425, 37.936] ] */ coordinates: { type: PropType; required: boolean; }; show: { type: BooleanConstructor; default: boolean; }; beforeId: StringConstructor; id: { type: StringConstructor; default: () => string; }; }; export type ImageLayerProps = ExtractPropTypes; export declare const imageLayerEmits: { created: () => boolean; }; export type ImageLayerEmits = typeof imageLayerEmits; export type ImageLayerInstance = InstanceType;