We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e094002 commit d49bec4Copy full SHA for d49bec4
packages/react-google-maps-api/src/components/drawing/Marker.md
@@ -109,7 +109,7 @@ const ScriptLoaded = require("../../docs/ScriptLoaded").default;
109
const mapContainerStyle = {
110
height: "400px",
111
width: "800px"
112
-}
+};
113
114
const centers = [{
115
lat: 37.772,
@@ -122,10 +122,10 @@ const SvgCircleMarker = () => {
122
/* Your component logic here */
123
return (
124
<svg viewBox="0 0 102 102">
125
- <circle cx="51" cy="51" r="50" fill="powderblue" stroke="#333">
+ <circle cx="51" cy="51" r="50" fill="powderblue" stroke="#333" />
126
</svg>
127
);
128
129
130
const markerSvgString = encodeURIComponent(
131
renderToStaticMarkup(<SvgCircleMarker />)
0 commit comments