GoogleMapMarker

A marker identifies a location on a map. By default, a marker uses a standard image.

Usage

<GoogleMap apiKey="xxx" options={{
  center: {
    lat: 13.736717,
    lng: 100.523186,
  },
  zoom: 18,
}}>
  <GoogleMapMarker lat={13.736717} lng={100.523186} />
</GoogleMap>







 

1
2
3
4
5
6
7
8
9