UNPKG

vuepress-plugin-photomap

Version:

VuePress2插件,用于在文章中插入照片地图组件,类似Apple相册的PhotoMap功能

17 lines (16 loc) 507 B
import type { Plugin } from '@vuepress/core'; export interface PhotoMapOptions { mapStyle?: string; defaultZoom?: number; maxZoom?: number; markerSize?: number; clusterRadius?: number; enablePhotoSwipe?: boolean; photoSwipeOptions?: object; enableTerrain?: boolean; enableSatelliteHybrid?: boolean; terrainExaggeration?: number; mapTilerApiKey?: string; } export declare const photoMapPlugin: (options?: PhotoMapOptions) => Plugin; export default photoMapPlugin;