import * as L from 'leaflet'; import { AreaViewBase } from 'map-sdk-leaflet/es/sdk/plugins/AreaView/AreaViewBase'; import type { AreaViewBaseOptions } from 'map-sdk-leaflet/es/sdk/plugins/AreaView/AreaViewBase'; import type { MyMap } from 'map-sdk-leaflet/es/sdk/ShipxyAPISDK'; declare class BaselinesAtSeaSymbol extends AreaViewBase { constructor(map: MyMap, options?: Partial); _show(): this; /** * 添加单个标记 * @param text 显示文本 * @param latlng 经纬度 * @param iconUrl 图标URL * @param className 自定义class */ _addOneMarker(text: string, latlng: L.LatLngLiteral | L.LatLng, iconUrl: string, className: string): L.Marker; } declare const baselinesAtSeaSymbol: (map: MyMap, options: Partial) => BaselinesAtSeaSymbol; export { BaselinesAtSeaSymbol, baselinesAtSeaSymbol };