/* tslint:disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface Map { /** * 是 */ longitude?: number; /** * 是 */ latitude?: number; /** * 否 */ scale?: number; /** * 否 */ theme?: string; /** * 否 */ showLocation?: boolean; /** * 否 */ includePoints?: { [k: string]: unknown; }; /** * 否 */ markers?: { [k: string]: unknown; }; /** * 否 */ polyline?: { [k: string]: unknown; }; /** * 否 */ circles?: { [k: string]: unknown; }; /** * 否 */ controls?: { [k: string]: unknown; }; /** * 否 */ bindMarkerTap?: () => void; /** * 否 */ bindCallOutTap?: () => void; /** * 否 */ bindControlTap?: () => void; /** * 否 */ bindRegionChange?: () => void; /** * 否 */ bindTap?: () => void; }