import { LngLat } from "./LngLat"; declare type IncludePointsCallbackOptions = import("../../common").CallbackOptions; export interface IncludePointsOptions extends IncludePointsCallbackOptions { /** * 要显示在可视区域内的坐标点列表 */ points: LngLat[]; } export {};