blob: 37204e9e46635929facaf8d1a6659cb8f8daaf5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
import React from 'react';
import { compose } from 'recompose';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import dummy from 'ba-api/dummyContents';
import {
withScriptjs,
withGoogleMap,
GoogleMap,
Marker,
} from 'react-google-maps';
import { Paper } from '@material-ui/core';
import IdentityCard from '../CardPaper/IdentityCard';
import styles from './widget-jss';
const MapWithAMarker = compose(
withScriptjs,
withGoogleMap
)(props => (
<GoogleMap
{...props}
defaultZoom={8}
defaultCenter={{ lat: -34.300, lng: 119.344 }}
>
<Marker
position={{ lat: -34.300, lng: 118.044 }}
/>
</GoogleMap>
));
class MapWidget extends React.Component {
render() {
const { classes } = this.props;
return (
<Paper className={classes.mapWrap}>
<MapWithAMarker
googleMapURL="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=geometry,drawing,places"
loadingElement={<div style={{ height: '100%' }} />}
containerElement={<div style={{ height: '400px' }} />}
mapElement={<div style={{ height: '100%' }} />}
/>
<div className={classes.address}>
<IdentityCard
title="Contact and Address"
name={dummy.user.name}
avatar={dummy.user.avatar}
phone="(+8543201213)"
address="Town Hall Building no.45 Block C - ABC Street"
/>
</div>
</Paper>
);
}
}
MapWidget.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(styles)(MapWidget);
|