0.1.3 • Published 8 years ago

regomap v0.1.3

Weekly downloads
1
License
MIT
Repository
-
Last release
8 years ago

ReGoMap Build Status

Wrapper google maps API for react.

How to install

npm install regomap

Usage

import React from 'react';
import ReGoMap from 'regomap';

const mapStyle = {
  width: "100%",
  height: "500px",
};
const center = {
  lat: -0.789275,
  lng: 113.921327,
}
const Map = () => <ReGoMap zpp mapStyle={mapStyle} center={center} zoom={5} />;

Note: This wrapper under development, i will appreciate every advice, issue, or PR.