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