Google api v3 undocumented map.get () method

I found out that an object of type google.maps.Map has a get () method that is not documented:

>>> map.get('draggableCursor')
"crosshair"

When I look at the docs , the method is not there. How is this possible? Or is a function registered somewhere else and I just skipped it?

+1
source share
1 answer

From the docs document: "google.maps.Map class. This class extends MVCObject ." The MVCObject class has a get function.

+2
source

All Articles