0% found this document useful (0 votes)
45 views2 pages

How Do I Get An Address Latitude-Longitude Using HTML5 Geolocation or Google API

The document explains how to obtain latitude and longitude using HTML5 Geolocation or Google API with JavaScript. It includes a script that checks if geolocation is enabled and retrieves the current position, handling success and error cases. The document emphasizes the need for a modern browser to use this feature.

Uploaded by

Abdul Basir
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
45 views2 pages

How Do I Get An Address Latitude-Longitude Using HTML5 Geolocation or Google API

The document explains how to obtain latitude and longitude using HTML5 Geolocation or Google API with JavaScript. It includes a script that checks if geolocation is enabled and retrieves the current position, handling success and error cases. The document emphasizes the need for a modern browser to use this feature.

Uploaded by

Abdul Basir
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Page 1 of 2

How do I get an address latitude-longitude using HTML5


Geolocation or Google API?
HTML Web Development Front End Technology

In order to get latitude and longitude using an HTML5 Geolocation or any Google API, we need to add
JavaScript for this.

The script is as follows −

if ([Link]) {

/* If current position is obtained then there is success otherwise th


On failure, separate error message is shown */
[Link](successFunc, errorFunc);
} else {
alert(‘Geolocation is not enabled in your browser. Please use a latest
}
Page 2 of 2

You might also like