×
1 Choose EITC/EITCA Certificates
2 Learn and take online exams
3 Get your IT skills certified

Confirm your IT skills and competencies under the European IT Certification framework from anywhere in the world fully online.

EITCA Academy

Digital skills attestation standard by the European IT Certification Institute aiming to support Digital Society development

LOG IN TO YOUR ACCOUNT

CREATE AN ACCOUNT FORGOT YOUR PASSWORD?

FORGOT YOUR PASSWORD?

AAH, WAIT, I REMEMBER NOW!

CREATE AN ACCOUNT

ALREADY HAVE AN ACCOUNT?
EUROPEAN INFORMATION TECHNOLOGIES CERTIFICATION ACADEMY - ATTESTING YOUR PROFESSIONAL DIGITAL SKILLS
  • SIGN UP
  • LOGIN
  • INFO

EITCA Academy

EITCA Academy

The European Information Technologies Certification Institute - EITCI ASBL

Certification Provider

EITCI Institute ASBL

Brussels, European Union

Governing European IT Certification (EITC) framework in support of the IT professionalism and Digital Society

  • CERTIFICATES
    • EITCA ACADEMIES
      • EITCA ACADEMIES CATALOGUE<
      • EITCA/CG COMPUTER GRAPHICS
      • EITCA/IS INFORMATION SECURITY
      • EITCA/BI BUSINESS INFORMATION
      • EITCA/KC KEY COMPETENCIES
      • EITCA/EG E-GOVERNMENT
      • EITCA/WD WEB DEVELOPMENT
      • EITCA/AI ARTIFICIAL INTELLIGENCE
    • EITC CERTIFICATES
      • EITC CERTIFICATES CATALOGUE<
      • COMPUTER GRAPHICS CERTIFICATES
      • WEB DESIGN CERTIFICATES
      • 3D DESIGN CERTIFICATES
      • OFFICE IT CERTIFICATES
      • BITCOIN BLOCKCHAIN CERTIFICATE
      • WORDPRESS CERTIFICATE
      • CLOUD PLATFORM CERTIFICATENEW
    • EITC CERTIFICATES
      • INTERNET CERTIFICATES
      • CRYPTOGRAPHY CERTIFICATES
      • BUSINESS IT CERTIFICATES
      • TELEWORK CERTIFICATES
      • PROGRAMMING CERTIFICATES
      • DIGITAL PORTRAIT CERTIFICATE
      • WEB DEVELOPMENT CERTIFICATES
      • DEEP LEARNING CERTIFICATESNEW
    • CERTIFICATES FOR
      • EU PUBLIC ADMINISTRATION
      • TEACHERS AND EDUCATORS
      • IT SECURITY PROFESSIONALS
      • GRAPHICS DESIGNERS & ARTISTS
      • BUSINESSMEN AND MANAGERS
      • BLOCKCHAIN DEVELOPERS
      • WEB DEVELOPERS
      • CLOUD AI EXPERTSNEW
  • FEATURED
  • SUBSIDY
  • HOW IT WORKS
  •   IT ID
  • ABOUT
  • CONTACT
  • MY ORDER
    Your current order is empty.
EITCIINSTITUTE
CERTIFIED

What is the purpose of the second script tag in the HTML code for creating a Google Map?

by EITCA Academy / Monday, 07 August 2023 / Published in Web Development, EITC/WD/HCF HTML and CSS Fundamentals, HTML and CSS extending skills, Creating a Google Map in a website, Examination review

The purpose of the second script tag in the HTML code for creating a Google Map is to load the Google Maps JavaScript API. This API provides all the necessary functionality and resources for embedding and interacting with Google Maps on a website.

When creating a Google Map, the first script tag is used to load the Google Maps JavaScript API, which is responsible for initializing the map and providing access to various map-related features and services. However, the API itself is not sufficient to display the map on a webpage. It requires additional code to be executed after the API is loaded. This is where the second script tag comes into play.

The second script tag contains the actual code that creates and customizes the map. It typically includes JavaScript functions that define the map's properties, such as its center coordinates, zoom level, and any additional markers or overlays. This code is executed after the API is fully loaded, ensuring that the necessary resources are available for creating and rendering the map.

Here is an example of how the second script tag is used in the HTML code for creating a Google Map:

html
<!DOCTYPE html>
<html>
  <head>
    <title>My Google Map</title>
    <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap" async defer></script>
    <script>
      function initMap() {
        var mapOptions = {
          center: { lat: 37.7749, lng: -122.4194 },
          zoom: 12
        };
        var map = new google.maps.Map(document.getElementById("map"), mapOptions);
      }
    </script>
  </head>
  <body>
    <div id="map" style="width: 100%; height: 400px;"></div>
  </body>
</html>

In this example, the first script tag loads the Google Maps JavaScript API with the appropriate API key. The `callback` parameter specifies the name of the function (`initMap`) that will be executed once the API is loaded.

The second script tag contains the `initMap` function, which creates a new map object and sets its center coordinates and zoom level. The `map` object is then rendered inside the `<div>` element with the id "map".

By separating the API loading and map creation code into two script tags, it allows for better organization and maintainability of the code. It also ensures that the map is not created until the API is fully loaded, preventing any potential errors or inconsistencies.

The purpose of the second script tag in the HTML code for creating a Google Map is to contain the code that creates and customizes the map, which is executed after the Google Maps JavaScript API is loaded. This separation of concerns allows for a more structured and reliable implementation of Google Maps on a website.

Other recent questions and answers regarding Examination review:

  • What are the steps involved in obtaining a key from Google and including it in the code to activate the Google Maps feature on our website?
  • How do we specify the location and marker on the Google map using JavaScript code?
  • What is the role of the "initMap" function in creating a functional Google API map?
  • How can we obtain an API key from Google to use their map service?
  • What is the purpose of the "initMap" function in the JavaScript code?
  • How can we style the div element that contains the Google map in our website?
  • How can we specify the dimensions of the map container div using CSS?
  • What is the first step in creating a Google Map in a website using HTML and CSS?

More questions and answers:

  • Field: Web Development
  • Programme: EITC/WD/HCF HTML and CSS Fundamentals (go to the certification programme)
  • Lesson: HTML and CSS extending skills (go to related lesson)
  • Topic: Creating a Google Map in a website (go to related topic)
  • Examination review
Tagged under: API, CSS, Google Maps, HTML, JavaScript, Web Development
Home » Web Development » EITC/WD/HCF HTML and CSS Fundamentals » HTML and CSS extending skills » Creating a Google Map in a website » Examination review » » What is the purpose of the second script tag in the HTML code for creating a Google Map?

Certification Center

USER MENU

  • My Account

CERTIFICATE CATEGORY

  • EITC Certification (105)
  • EITCA Certification (9)

What are you looking for?

  • Introduction
  • How it works?
  • EITCA Academies
  • EITCI DSJC Subsidy
  • Full EITC catalogue
  • Your order
  • Featured
  •   IT ID
  • EITCA reviews (Medium publ.)
  • About
  • Contact

EITCA Academy is a part of the European IT Certification framework

The European IT Certification framework has been established in 2008 as a Europe based and vendor independent standard in widely accessible online certification of digital skills and competencies in many areas of professional digital specializations. The EITC framework is governed by the European IT Certification Institute (EITCI), a non-profit certification authority supporting information society growth and bridging the digital skills gap in the EU.
Eligibility for EITCA Academy 90% EITCI DSJC Subsidy support
90% of EITCA Academy fees subsidized in enrolment

    EITCA Academy Secretary Office

    European IT Certification Institute ASBL
    Brussels, Belgium, European Union

    EITC / EITCA Certification Framework Operator
    Governing European IT Certification Standard
    Access contact form or call +32 25887351

    Follow EITCI on X
    Visit EITCA Academy on Facebook
    Engage with EITCA Academy on LinkedIn
    Check out EITCI and EITCA videos on YouTube

    Funded by the European Union

    Funded by the European Regional Development Fund (ERDF) and the European Social Fund (ESF) in series of projects since 2007, currently governed by the European IT Certification Institute (EITCI) since 2008

    Information Security Policy | DSRRM and GDPR Policy | Data Protection Policy | Record of Processing Activities | HSE Policy | Anti-Corruption Policy | Modern Slavery Policy

    Automatically translate to your language

    Terms and Conditions | Privacy Policy
    EITCA Academy
    • EITCA Academy on social media
    EITCA Academy


    © 2008-2026  European IT Certification Institute
    Brussels, Belgium, European Union

    TOP
    CHAT WITH SUPPORT
    Do you have any questions?
    Attach files with the paperclip or paste screenshots into the message box (Ctrl+V). Max 5 file(s), 10 MB each.
    We will reply here and by email. Your conversation is tracked with a support token.