-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgoogle-marker.js
82 lines (71 loc) · 2.03 KB
/
google-marker.js
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// @flow
/**
* <!-- {"order": 2} -->
*
* # Native google marker
*
* Get instances of [google.maps.Map](https://developers.google.com/maps/documentation/javascript/reference/map)
* class and instance of _google.maps_ using _useMap_ hook.
*
* Then as like as in [example here](https://developers.google.com/maps/documentation/javascript/adding-a-google-map)
* just add marker using _React.useEffect_ hook
*
* You can ask why not to expose it with the library.
* See the [api surface of Google marker](https://developers.google.com/maps/documentation/javascript/reference/marker#Marker)
* The final component may be huge and not solve all the cases.
*/
import * as React from 'react';
import { Map, useMap } from 'rgm';
import { useGoogleApiLoader } from '../dev-src/hooks';
import { Ratio } from '../dev-src/controls';
import type { StaticProps } from '../dev-src/doc.js';
// https://developers.google.com/maps/documentation/javascript/reference/map#MapOptions
const MAP_OPTIONS = {
zoom: 9,
center: {
lat: 59.936,
lng: 30.314,
},
};
type MarkerProps = {|
lat: number,
lng: number,
|};
export const GoogleMarker = ({ lat, lng }: MarkerProps): React.Node => {
const { api, map } = useMap();
React.useEffect(() => {
if (api) {
const marker = new api.Marker({
map,
position: {
lat,
lng,
},
});
return () => {
marker.setMap(null);
};
}
}, [api, map, lat, lng]);
return null;
};
export default function GoogleMarkerPage(): React.Node {
const api = useGoogleApiLoader();
return (
<Ratio value={3 / 4}>
{api && (
<Map api={api} options={MAP_OPTIONS}>
<GoogleMarker
lat={MAP_OPTIONS.center.lat}
lng={MAP_OPTIONS.center.lng}
/>
</Map>
)}
</Ratio>
);
}
export const getStaticProps = async (): Promise<StaticProps> => {
// The best is to place this method at _app.js but this doesn't work now
const doc = await import('../dev-src/doc');
return doc.getStaticProps();
};