Skip to main content

Get Google Map JavaScript API Key

Steps:


  1. First open Google cloud console and you will see below screen.

(N.B.:If you are already logged in with your Gmail account. Otherwise, it asks to log in first.)

2.Then click on APIs & Services menu.



3.After choose on APIs & Services menu you can see below screen and tap on CREATE NEW PROJECT button placed on right hand side.


4. I'm creating a project with name map key generation test. you can give any name and location and after this click on create.


5.After creating a project you can see the dashboard like below and you receive notification of new project.


6. Then click on ENABLE APIs AND SERVICES button locate on top.



7.After click this button Google API library screen open then you have to select Maps javascript API card.



8.On click the card you can see below screen. Then click on enable button.


9.After open the enable screen go to the credential tab and click the credential in APIs and Services hyperlink.


10.Then click on CREATE CREDENTIALS button and select API key.



11.Congratulations now you got the API key.



12.Now you can use this key in script and we are grateful to help you.

<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAD7TYT************************RI"></script>

Comments

Popular posts from this blog

Send FTL In Email Using Spring Boot

                  In this topic, we discuss mail protocol and how to send email using mail library and how can we sent an email with more dynamic and with some more graphical interface and it's really looking good than the traditional email content. Here we use FTL to make email a more graphical experience. We try to show the example of this topic as possible as an easy way. so without wasting any time let's start the topic. WHAT IS FTL AND WHAT'S THE BENEFITS?          FTL(Free marker template) is a Java-based template language which is used to make the more dynamic and graphical experience on screen. FTL discovered by Apache foundation. It focuses on java based dynamic template design. Free marker template file extension is .ftl which is approx. as same as HTML code but the major difference is, we can send the data from Java source classes to show dynamic content. It's the main focus on MVC architecture which helps in separating web pages designer fro

QR Code Generate using zxing in spring boot

WHAT IS QR CODE AND HOW TO GENERATE QR CODE USING JAVA:           QR Code stands for Quick Response Code first design in Japan in 1994. The QR code is the trademark for a type of matrix barcode. The main purpose is to store information and is easily read by the advanced mobile system. The QR code is the two-dimensional bar code which store the piece of information.in the QR code information are encoded in 4 standardized encoding mode (numeric, alphanumeric, byte/binary, and kanji)    to store data efficiently. In Java, we can generate a QR code using zxing API provided by Google .zxing API support 4000 characters to encode. So without wasting any time let begin with an example for a better preference. PROJECT STRUCTURE: MAVEN DEPENDENCIES:        Put the dependencies on pom.xml pom.xml: <!-- https://mvnrepository.com/artifact/com.google.zxing/core --> <dependency>      <groupId>com.google.zxing

Scheduler(Task Executor) In Spring Boot

WHAT IS A SCHEDULER?       Firstly know about what is scheduling. Scheduling is a process that executing a task in a certain time period. A scheduler is a tool, the main objective is to implement the scheduling process. Mainly scheduler is used to perform the batch task for the repeated manner and perform the action of task without any outer other events. IMPLEMENTATION OF SCHEDULER IN SPRING BOOT:        In spring boot we can implement scheduler in multiple ways but here we use the annotation to implement the scheduler. In spring boot we can implement scheduler using @Scheduled annotation. The @Scheduled annotation internally uses the TaskScheduler interface to schedule a task. To enable the @Scheduled annotation we must use @EnableScheduling annotation in the Configuration file.        Let's start with an example of task scheduler. Her we use STS(spring tool suite) to build the spring boot project. First, build a project with web configuration. PROJECT S