Sample code for HTML5-Geolocation APIs
1.navigator.geolocation
HTML5The main object related to geographical location is navigator.geolocation, which has some methods and properties, Detecting browser support for HTML5 geolocation is also detecting this object.
2.getCurrentPosition, watchPosition and clearWatch methods
These are the two core methods of geolocation. The first method only obtains the geographical location information, and the latter method obtains the geographical location information at a certain time interval. Their parameters are the same, but the return values are different. The latter returns a watchId. Passing the watchId as a parameter to the clearWatch method can terminate the geographical location information. Request for location information.
getCurrentPosition is in the shape of:
void getCurrentPosition(in PositionC all back successCallback, in optional PositionErrorCallback errorCallback, in optional PositionOptions options);
The first parameter is a function , which is used to process the successfully received geographical location information. It usually receives a position object as a parameter , and provide the received geolocation information.
The second parameter is optional and is also a function for error handling. This function usually receives an error object as a parameter, and error contains error information.
The third parameter is used to further control the geographical location information and is also optional. It is usually enclosed in curly braces, and it usually has three values:
enableHighAccuracy: used to control accuracy, its effect may have side effects.
timeout: Used to specify the timeout for geographical location information requests, in milliseconds.
MaximumAge: used to specify the update frequency of geographical location information, in milliseconds.
An example is as follows:
navigator.geolocation.getCurrentPosition(up date Location,han dl eLocationError, {timeout:10000});
3.psition object
Its definition is as follows:
interface Position { readonly attribute Co ord inates coords; readonly attribute DOMTimeStamp timestamp; };
It has a sub-object coords and a property timestamp.
coords: is a Coordinates object, which is defined as follows:
interface Coordinates { readonly attribute double latitude; //维度 readonly attribute double lon git ude; //经度 readonly attribute double? altitude; //高程(/m) readonly attribute double accuracy; //经度和维度的精确度(/m) readonly attribute double? altitudeAccuracy; //高程精确度(/m) readonly attribute double? head ing; //移动方向(/deg) readonly attribute double? speed; //移动速度(/m/s) };
The properties with question marks will not be implemented in many browsers and devices. If there are no these properties, programming through The value obtained will be null.
The three attributes of latitude, longitude and accuracy are used to provide the requested dimension, longitude and accuracy information respectively. Latitude and longitude are expressed in decimals, and the precision unit is meters.
timestamp: Timestamp.
4.error object
The error object has a code attribute, which is used to specify the error type. You can think of code as an enumeration type. It has four values: 0 (UNKNOWN_ERROR1, 1 (PERMISSION_DENIED), 2 (POSITION_UNAVAILABLE) and
3 (TIMEOUT)
In addition, error also has a message attribute to provide error details
The above is the detailed content of Sample code for HTML5-Geolocation APIs. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.
