Remove ads
Desktop and mobile web mapping service by Baidu From Wikipedia, the free encyclopedia
Baidu Maps is a desktop and mobile web mapping service application and technology provided by Baidu, offering satellite imagery, street maps, street view (which is called "Panorama" – zh:百度全景) and indoor view perspectives,[1] as well as functions such as a route planner for traveling by foot, car, or with public transport. Android and iOS applications are available.
This article needs additional citations for verification. (November 2024) |
You can help expand this article with text translated from the corresponding article in Chinese. (April 2015) Click [show] for important translation instructions.
|
Native name | 百度地图 |
---|---|
Type of site | Web mapping |
Available in | Chinese |
Owner | Baidu |
URL | Baidu Maps |
Commercial | Yes |
Registration | None |
Launched | 2005 |
Current status | Active |
Baidu Maps is available only in the Chinese language and, before 2016, it offered only maps of mainland China, Hong Kong, Macau and Taiwan, with the rest of the world appearing unexplored.[2] Currently, Baidu Maps also offers maps of various other countries.[citation needed] It was reported that more than 150 countries would be supported by the end of 2016.[3] Baidu uses map data supplied by NavInfo, MapKing, Here, LocalKing and OpenStreetMap.[4]
In 2016, it was reported that Baidu Maps had over 348 million monthly active users.[5]
On September 30, 2005, Baidu Maps was released.[6]
In 2010, Baidu added a detailed three-dimensional view for select cities, which has been described as being SimCity-like.[7] The feature is licensed from the digital mapping service Edushi.[8] Cities covered include Beijing, Shanghai, Guangzhou and Shenzhen. In November 2011, Baidu launched satellite imagery for the Greater China region with better resolution than Google Maps.[9] City-level only includes Beijing, Shanghai, Guangzhou, Shenzhen, Hong Kong, Macao and other major cities.
On September 3, 2012, at its annual Baidu World event, Baidu revealed 360-degree digital imagery for select buildings.[8]
On August 21, 2013, Baidu Maps launched the Baidu Panoramic Map and announced the upgrade of its location-based services business. According to Silicon Valley Power, Shen Li, head of Baidu’s LBS business unit, states that Baidu Maps' users have exceeded 200 million.[10]
Baidu Maps uses a variant of web Mercator projection for slicing map data into tiles, with distances expressed in degrees. It is associated with an underlying latitude-longitude reference. The reference uses the BD-09 coordinate system, which adds further obfuscation to the already obscure national standard in China, GCJ-02[11] (which in turn is defined in terms of the de facto standard around the world, WGS 84). Baidu alleges that adopting BD-09 "protects users' privacy".[12]
The Baidu Maps API documentation specifies that "real" (WGS 84) GPS coordinates must be converted via a coordinate conversion interface.[13] An HTTP interface, JavaScript API, Android SDK, and iOS SDK are available.
The JavaScript coordinate conversion API is demonstrated online by Baidu, but without any reverse (to GCJ-02) conversion capabilities.[14] Open source implementations in R[15] and various other languages[16] exist, implemented in a manner much like the reverse GCJ-02 algorithm.
BD-09's latitude-longitude coordinates are derived by scrambling a polar version of GCJ-02 coordinates and adding a fixed offset:[15]
from cmath import polar, rect
from math import sin, cos, pi
# Represent coordinates with complex numbers for simplicity
coords = complex
# baidu assumes x/real: lon; y/imag: lat here.
def gcj_bd(gcj: coords) -> coords:
r, θ = polar(gcj)
r += 2e-5 * sin(gcj.imag * pi * 3000 / 180)
θ += 3e-6 * cos(gcj.real * pi * 3000 / 180)
return rect(r, θ) + (0.0065 + 0.006j)
The street view service of Baidu Maps was first launched on August 21, 2013.[17] This is a list of cities supported as of March 11, 2015:
In June 2020, the Indian Government blocked Baidu Maps as well as 58 other Chinese apps, citing national security concerns[18][19] during the clashes between the People's Liberation Army Ground Force and the Indian Army in the Galwan Valley.[20]
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.