Multiple choice technology web technology

In the load method, what is the purpouse of the number "2"? google.load("maps","2");

  1. Sets the zoom level

  2. Defines how many markers can be placed on the map

  3. Defines de version of google map api to be used

  4. Indicates the number of vertical controls available to the user

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In google.load('maps', '2'), the '2' parameter specifies the version of the Google Maps API to load. This allows developers to control which API version their application uses.

AI explanation

In the Google Maps JavaScript API loader, google.load("maps", "2") specifies which version of the Maps API to load — here version 2. It has nothing to do with zoom level, marker counts, or UI controls; those are configured separately once the API is loaded.