Socket
Socket
Sign inDemoInstall

@types/leaflet.awesome-markers

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/leaflet.awesome-markers

TypeScript definitions for leaflet.awesome-markers


Version published
Weekly downloads
1.1K
decreased by-12.48%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/leaflet.awesome-markers

Summary

This package contains type definitions for leaflet.awesome-markers (https://github.com/sigma-geosistemas/Leaflet.awesome-markers#properties).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/leaflet.awesome-markers/v0.

index.d.ts

import * as Leaflet from "leaflet";

declare global {
    namespace L {
        namespace AwesomeMarkers {
            var version: string;

            function icon(options: AwesomeMarkers.IconOptions): AwesomeMarkers.Icon;

            interface IconStatic extends Leaflet.IconStatic {
                /**
                 * Creates an icon instance with the given options.
                 */
                new(options: IconOptions): Icon;

                Default: {
                    /**
                     * Creates a default icon instance with the given options.
                     */
                    new(options?: IconOptions): Icon.Default;

                    imagePath: string;
                };
            }

            interface Icon extends Leaflet.Icon {
                options: AwesomeMarkers.IconOptions;
            }

            interface IconOptions extends Leaflet.IconOptions {
                /**
                 * Name of the icon. See glyphicons or font-awesome.
                 */
                icon?: string | undefined;

                /**
                 * Select de icon library. 'fa' for font-awesome or 'glyphicon' for bootstrap 3.
                 */
                prefix?: "fa" | "glyphicon" | undefined;

                /**
                 * Color of the marker
                 */
                markerColor?:
                    | "red"
                    | "darkred"
                    | "orange"
                    | "green"
                    | "darkgreen"
                    | "blue"
                    | "purple"
                    | "darkpurple"
                    | "cadetblue"
                    | undefined;

                /**
                 * Color of the icon. 'white', 'black' or css code (hex, rgba etc).
                 */
                iconColor?: "white" | "black" | string | undefined;

                /**
                 * Make the icon spin. true or false. Font-awesome required
                 */
                spin?: boolean | undefined;

                /**
                 * Additional classes in the created tag
                 */
                extraClasses?: string | undefined;
            }

            var Icon: AwesomeMarkers.IconStatic;
        }
    }
}

Additional Details

  • Last updated: Wed, 18 Oct 2023 05:47:07 GMT
  • Dependencies: @types/leaflet

Credits

These definitions were written by Egor Komarov, and Marcel Sebek.

FAQs

Package last updated on 18 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc