@yandex/ymaps3-types
Version:
Types for ymaps3 maps library
15 lines (14 loc) • 522 B
TypeScript
import { Context } from "./Entities";
import type { MAP_TYPES } from "./YMapDefaultSchemeLayer";
export type YMapType = keyof typeof MAP_TYPES;
export type YMapTypeContext = {
type?: YMapType;
};
/**
* Selects one of predefined map style modes optimized for particular use case. The following values are supported:
* * `map` - basic map
* * `driving` - automobile navigation map
* * `transit` - public transport map
* * `admin` - administrative map
*/
export declare const TypeContext: Context<YMapTypeContext>;