@openglobus/og
Version:
[openglobus](https://www.openglobus.org/) is a javascript/typescript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers, and 3D objects. It uses the WebGL technology, open source, and completely fr
16 lines (15 loc) • 727 B
TypeScript
import { View } from "../../ui/View";
import type { IViewParams, ViewEventsList } from "../../ui/View";
import { ToggleButton } from "../../ui/ToggleButton";
import type { EventsHandler } from "../../Events";
import { ElevationProfile } from "./ElevationProfile";
interface IElevationProfileButtonsViewParams extends IViewParams {
}
type ElevationProfileButtonsViewEventsList = ["reset", "list", "location"];
export declare class ElevationProfileButtonsView extends View<ElevationProfile> {
events: EventsHandler<ElevationProfileButtonsViewEventsList> & EventsHandler<ViewEventsList>;
pointListBtn: ToggleButton;
constructor(params?: IElevationProfileButtonsViewParams);
render(params: any): this;
}
export {};