@3acaga/react-bing-maps
TypeScript icon, indicating that this package has built-in type declarations

0.0.0-beta.11 • Public • Published

Another one react binding for bing maps...

Installation

npm install --save @3acaga/react-bing-maps

Simple example

Code:

import React from "react";
import ReactBingMap, { Pushpin, Polyline } from "@3acaga/react-bing-maps";

const BingMap: React.FC = () => {
  const start = {
    latitude: 0,
    longitude: 0
  };

  const end = {
    latitude: 50,
    longitude: 50
  };

  return (
    <div style={{ height: 600}}>
      <ReactBingMap apiKey="YOUR_API_KEY_HERE">
        <Pushpin location={start} />

        <Polyline path={[start, end]} />

        <Pushpin location={end} />
      </ReactBingMap>
    </div>
  );
};

export default BingMap;

Result:

screenshot

Demo sandbox

License

MIT

Versions

Current Tags

Version History

Package Sidebar

Install

npm i @3acaga/react-bing-maps

Weekly Downloads

204

Version

0.0.0-beta.11

License

MIT

Unpacked Size

64.5 kB

Total Files

25

Last publish

Collaborators

  • 3acaga