79.6k views
5 votes
In HTML5, which method is used to get the current location of a user? a) getCurrentLocation() b) getUserLocation() c) locateUser() d) geolocation.getCurrentPosition()

User Tran Hieu
by
8.0k points

1 Answer

4 votes

Final answer:

The method used in HTML5 to get a user's current location is the geolocation.getCurrentPosition() method. The latitude and longitude of the user's location are given by this method, and the user must consent to the website accessing their location.

Step-by-step explanation:

In HTML5, the method that is used to get the current location of a user is the geolocation.getCurrentPosition() method. This function provides the latitude and longitude of the user's location. Here is an example of how to use it:

Code example:

navigator.geolocation.getCurrentPosition(function(position) { let lat = position.coords.latitude; let long = position.coords.longitude; //Do something with the data});

This code will return the latitude and longitude of the user's present location. If the location is not detected, then the function will return undefined. Please note, for this function to work, the user must give permission for the website to access their location.

Learn more about geolocation.getCurrentPosition()

User Thinkski
by
8.1k points