Giter Site home page Giter Site logo

react-yandex-maps's Introduction

react-yandex-maps

Yandex Maps API bindings for React

Install

npm install --save https://github.com/gribnoysup/react-yandex-maps.git

Basic Usage

// with yandex maps api

window.ymaps.ready(function () {
  const myMap = new window.ymaps.Map('map', {
    center: [55.751574, 37.573856],
    zoom: 9
  }, {
    searchControlProvider: 'yandex#search'
  })


  const myPlacemark = new window.ymaps.Placemark([55.751574, 37.573856], {
    hintContent: 'Собственный значок метки',
    balloonContent: 'Это красивая метка'
  }, {
    iconLayout: 'default#image',
    iconImageHref: 'images/myIcon.gif',
    iconImageSize: [30, 42],
    iconImageOffset: [-3, -42]
  })

  myMap.geoObjects.add(myPlacemark)
})


// with react-yandex-maps

import YMaps from 'react-yandex-maps'

const BasicMap = () => (
  <YMaps.Map
    state={{
      center: [55.76, 37.64],
      zoom: 10
    }}
    options={{
      searchControlProvider: 'yandex#search'
    }}
  >
    <YMaps.Placemark
      geometry={{
        coordinates: [55.826479, 37.487208]
      }}
      properties={{
        hintContent: 'Собственный значок метки',
        balloonContent: 'Это красивая метка'
      }}
      options={{
        iconLayout: 'default#image',
        iconImageHref: 'images/myIcon.gif',
        iconImageSize: [30, 42],
        iconImageOffset: [-3, -42]
      }}
    />
  </YMaps.Map>
)

Supported Yandex.Maps Objects:

Map,
// GeoObjects
Clusterer,
GeoObject,
ObjectManager,
Placemark,
Polyline,
Rectangle,
Polygon,
Circle
// Controls
Button,
FullscreenControl,
GeolocationControl,
Manager,
RouteEditor,
RulerControl,
SearchControl,
TrafficControl,
TypeSelector,
ZoomControl

All Objects events are avaliable, just use camelCase event names instead of default ones (for example geometrychange -> onGeometryChange):

function handleEventSomehow() {/* more code */}

// with yandex maps api:

const circle = new window.ymaps.GeoObject({
  geometry: {
    type: "Circle",
    coordinates: [55.76, 37.64],
    radius: 10000
  }
})

circle.events.add('geometrychange', handleEventSomehow)

// with react-yandex-maps
import YMaps from 'react-yandex-maps'

const Circle = () => (
  <YMaps.Circle
    geometry={{
      coordinates: [55.76, 37.64],
      radius: 10000
    }}
    onGeometryChange={handleEventSomehow}
  />
)

The instanceRef Callback Attribute

react-yandex-maps supports a special attribute, that [works similar] (https://facebook.github.io/react/docs/refs-and-the-dom.html) to React ref attribute. react-yandex-maps will call the instanceRef callback with the YandexMap Object instance when the component mounts, and call it with null when it unmounts.

More Examples

You can go to https://gribnoysup.github.io/react-yandex-maps/ to look at examples, or clone this repo, cd to repo folder and run npm start

git clone https://github.com/gribnoysup/react-yandex-maps.git
cd ./react-yandex-maps
npm start

TODO:

  • More propTypes
  • Add tests
  • More docs and examples

Thanks

Thanks to @effrenus and his [yandex-map-react] (https://github.com/effrenus/yandex-map-react) for inspiration

Thanks to create-react-app team for making examples so easy to make

react-yandex-maps's People

Contributors

deylak avatar gribnoysup avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.