Home Web Front-end H5 Tutorial Sample code for HTML5-Geolocation APIs

Sample code for HTML5-Geolocation APIs

Apr 01, 2017 am 11:42 AM

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);
Copy after login

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});
Copy after login

3.psition object
Its definition is as follows:

interface Position {
      readonly attribute Co
ord
inates coords;
      readonly attribute DOMTimeStamp timestamp;
   };
Copy after login

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)
      };
Copy after login

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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

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

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

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.

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

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

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

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

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

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

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

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

HTML onclick Button HTML onclick Button Sep 04, 2024 pm 04:49 PM

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

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

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

See all articles