Socket
Socket
Sign inDemoInstall

@pbe/react-yandex-maps

Package Overview
Dependencies
4
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @pbe/react-yandex-maps

Yandex.Maps API bindings for React


Version published
Weekly downloads
9.9K
increased by15.06%
Maintainers
1
Install size
725 kB
Created
Weekly downloads
 

Readme

Source

React Yandex Maps

npm npm bundle size

Yandex Maps API bindings for React

Features

  • Supports TypeScript out of the box
  • Automatic yamps api and modules loading
  • Declarative rendering

Installation

npm:

npm install @pbe/react-yandex-maps

yarn:

yarn add @pbe/react-yandex-maps

Getting Started

Try running a simple example:

import React from 'react';
import { YMaps, Map, Placemark } from '@pbe/react-yandex-maps';

export default function App() {
  const defaultState = {
    center: [55.751574, 37.573856],
    zoom: 5,
  };

  return (
    <YMaps>
      <Map defaultState={defaultState}>
        <Placemark geometry={[55.684758, 37.738521]} />
      </Map>
    </YMaps>
  );
}

Documentation

The React Yandex Maps docs are located at website

Contribution

We appreciate your help!

To contribute, please read our contributing instructions.

License

MIT

Keywords

FAQs

Last updated on 29 Sep 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc