From e7d1abdf2cfac44758b5000701ca54d5ee53959c Mon Sep 17 00:00:00 2001 From: Yash Goyal <86905779+yash-writes-code@users.noreply.github.com> Date: Sat, 27 Jul 2024 13:08:28 +0530 Subject: [PATCH] Fixed typo in markers.md This pull request corrects a typo in the Maps API documentation for adding markers using React. The current documentation incorrectly refers to the method as "marker," while the actual method is named "Marker." --- components/markers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/markers.md b/components/markers.md index 6b5c144..9073329 100644 --- a/components/markers.md +++ b/components/markers.md @@ -20,7 +20,7 @@ React JS Implementation Live Video : [CodeSandbox](https://codesandbox.io/p/sand ``` - **React js** ```js - markerObject = mapplsClassObject.marker({ + markerObject = mapplsClassObject.Marker({ map: mapObject, position:{lat:28.5512908, lng:77.26809282}, });