UNPKG

google-react-maps

Version:

A more powerfully custom version of the Google Maps Javascript API built for React. Multiple Datalayer support. GEOJSON Enabled.

158 lines (127 loc) 6.59 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _propTypes = require('prop-types'); var _propTypes2 = _interopRequireDefault(_propTypes); var _utils = require('../utils/utils'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } /** Defines a circle shape in the map. Relates to google.maps.Circle class. * @property {object} props * @property {number} props.radius * @property {object} props.center * @property {number} props.center.lat * @property {number} props.center.lng * @property {function} props.onRadiusChange * @property {function} props.onCenterChange */ var Circle = function (_React$Component) { _inherits(Circle, _React$Component); function Circle(props) { _classCallCheck(this, Circle); var _this = _possibleConstructorReturn(this, (Circle.__proto__ || Object.getPrototypeOf(Circle)).call(this, props)); _this.displayName = 'Circle'; _this.setupListeners = _this.setupListeners.bind(_this); _this.state = { circle: null }; _this.focus = _this.focus.bind(_this); return _this; } /** Focus the map on this circle. */ _createClass(Circle, [{ key: 'focus', value: function focus() { var circle = this.state.circle; var map = this.state.map; if (circle && map) { map.fitBounds(circle.getBounds()); } } /** Setup the listeners for this circle */ }, { key: 'setupListeners', value: function setupListeners() { var _this2 = this; var circle = this.state.circle; var _props = this.props, maps = _props.maps, map = _props.map; if (maps && circle) { maps.event.addListener(circle, 'radius_changed', function (e) { if (typeof _this2.props.onRadiusChange === 'function') _this2.props.onRadiusChange(circle.getRadius()); }); maps.event.addListener(circle, 'center_changed', function (e) { if (typeof _this2.props.onCenterChange === 'function') _this2.props.onCenterChange(circle.getCenter().toJSON()); }); maps.event.addListener(circle, 'click', function (e) { if (typeof _this2.props.onClick === 'function') _this2.props.onClick(Object.assign({ coords: circle.getCenter().toJSON() }, e)); }); maps.event.addListener(circle, 'rightclick', function (_ref) { var latLng = _ref.latLng; return typeof _this2.props.onRightClick === 'function' ? _this2.props.onRightClick({ coords: latLng.toJSON() }) : function (f) { return f; }; }); } else console.error(new Error("You must pass maps and map to this component. Otherwise, run it inside a map component.")); } }, { key: 'componentDidUpdate', value: function componentDidUpdate(prevProps, prevState) { var currCenter = new this.props.maps.LatLng(this.props.center); var prevCenter = this.state.circle.getCenter(); if (!currCenter.equals(prevCenter)) this.state.circle.setCenter(currCenter); if (this.props.radius != this.state.circle.getRadius()) this.state.circle.setRadius(this.props.radius); } }, { key: 'componentWillMount', value: function componentWillMount() { var _props2 = this.props, map = _props2.map, maps = _props2.maps; if (map && maps) { var CircleOptions = Object.assign({}, this.props, { maps: undefined }); var circle = new maps.Circle(CircleOptions); this.setState({ circle: circle }, this.setupListeners); } } }, { key: 'componentWillUnmount', value: function componentWillUnmount() { if (this.state.circle) { this.props.maps.event.clearListeners(this.state.circle); this.state.circle.setMap(null); } } }, { key: 'render', value: function render() { var children = []; if (this.props.children && this.props.maps && this.props.map) children = (0, _utils.mapChildren)({ coords: this.state.circle.getCenter().toJSON() }, this); return _react2.default.createElement( 'div', null, children ); } }]); return Circle; }(_react2.default.Component); var number = _propTypes2.default.number, shape = _propTypes2.default.shape; Circle.propTypes = { radius: number.isRequired, center: shape({ lat: number, lng: number }).isRequired }; exports.default = Circle; module.exports = exports['default']; //# sourceMappingURL=circle.js.map