mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-26 06:47:17 +10:00
79 lines
2.1 KiB
JavaScript
79 lines
2.1 KiB
JavaScript
import React, { Component } from 'react';
|
|
import { bool, number, object, string } from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import { propTypes } from '../../util/types';
|
|
import config from '../../config';
|
|
import { StaticMap, DynamicMap, isMapsLibLoaded } from './GoogleMap';
|
|
// import { StaticMap, DynamicMap, isMapsLibLoaded } from './MapboxMap';
|
|
|
|
import css from './Map.css';
|
|
|
|
export class Map extends Component {
|
|
render() {
|
|
const {
|
|
className,
|
|
rootClassName,
|
|
mapRootClassName,
|
|
address,
|
|
center,
|
|
obfuscatedCenter,
|
|
zoom,
|
|
mapsConfig,
|
|
useStaticMap,
|
|
} = this.props;
|
|
const classes = classNames(rootClassName || css.root, className);
|
|
const mapClasses = mapRootClassName || css.mapRoot;
|
|
|
|
if (mapsConfig.fuzzy.enabled && !obfuscatedCenter) {
|
|
throw new Error(
|
|
'Map: obfuscatedCenter prop is required when config.maps.fuzzy.enabled === true'
|
|
);
|
|
}
|
|
if (!mapsConfig.fuzzy.enabled && !center) {
|
|
throw new Error('Map: center prop is required when config.maps.fuzzy.enabled === false');
|
|
}
|
|
|
|
const location = mapsConfig.fuzzy.enabled ? obfuscatedCenter : center;
|
|
|
|
return !isMapsLibLoaded() ? (
|
|
<div className={classes} />
|
|
) : useStaticMap ? (
|
|
<StaticMap center={location} zoom={zoom} address={address} mapsConfig={mapsConfig} />
|
|
) : (
|
|
<DynamicMap
|
|
containerElement={<div className={classes} />}
|
|
mapElement={<div className={mapClasses} />}
|
|
containerClassName={classes}
|
|
mapClassName={mapClasses}
|
|
center={location}
|
|
zoom={zoom}
|
|
address={address}
|
|
mapsConfig={mapsConfig}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
Map.defaultProps = {
|
|
className: null,
|
|
rootClassName: null,
|
|
mapRootClassName: null,
|
|
address: '',
|
|
zoom: config.maps.fuzzy.enabled ? config.maps.fuzzy.defaultZoomLevel : 11,
|
|
mapsConfig: config.maps,
|
|
useStaticMap: false,
|
|
};
|
|
|
|
Map.propTypes = {
|
|
className: string,
|
|
rootClassName: string,
|
|
mapRootClassName: string,
|
|
address: string,
|
|
center: propTypes.latlng,
|
|
obfuscatedCenter: propTypes.latlng,
|
|
zoom: number,
|
|
mapsConfig: object,
|
|
useStaticMap: bool,
|
|
};
|
|
|
|
export default Map;
|