qqmap-wx-jssdk.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. /**
  2. * 微信小程序JavaScriptSDK
  3. *
  4. * @version 1.0
  5. * @date 2017-01-10
  6. * @author jaysonzhou@tencent.com
  7. */
  8. var ERROR_CONF = {
  9. KEY_ERR: 311,
  10. KEY_ERR_MSG: 'key格式错误',
  11. PARAM_ERR: 310,
  12. PARAM_ERR_MSG: '请求参数信息有误',
  13. SYSTEM_ERR: 600,
  14. SYSTEM_ERR_MSG: '系统错误',
  15. WX_ERR_CODE: 1000,
  16. WX_OK_CODE: 200
  17. };
  18. var BASE_URL = 'https://apis.map.qq.com/ws/';
  19. var URL_SEARCH = BASE_URL + 'place/v1/search';
  20. var URL_SUGGESTION = BASE_URL + 'place/v1/suggestion';
  21. var URL_GET_GEOCODER = BASE_URL + 'geocoder/v1/';
  22. var URL_CITY_LIST = BASE_URL + 'district/v1/list';
  23. var URL_AREA_LIST = BASE_URL + 'district/v1/getchildren';
  24. var URL_DISTANCE = BASE_URL + 'distance/v1/';
  25. var Utils = {
  26. /**
  27. * 得到终点query字符串
  28. * @param {Array|String} 检索数据
  29. */
  30. location2query(data) {
  31. if (typeof data == 'string') {
  32. return data;
  33. }
  34. var query = '';
  35. for (var i = 0; i < data.length; i++) {
  36. var d = data[i];
  37. if (!!query) {
  38. query += ';';
  39. }
  40. if (d.location) {
  41. query = query + d.location.lat + ',' + d.location.lng;
  42. }
  43. if (d.latitude && d.longitude) {
  44. query = query + d.latitude + ',' + d.longitude;
  45. }
  46. }
  47. return query;
  48. },
  49. /**
  50. * 使用微信接口进行定位
  51. */
  52. getWXLocation(success, fail, complete) {
  53. uni.getLocation({
  54. type: 'gcj02',
  55. success: success,
  56. fail: fail,
  57. complete: complete
  58. });
  59. },
  60. /**
  61. * 获取location参数
  62. */
  63. getLocationParam(location) {
  64. if (typeof location == 'string') {
  65. var locationArr = location.split(',');
  66. if (locationArr.length === 2) {
  67. location = {
  68. latitude: location.split(',')[0],
  69. longitude: location.split(',')[1]
  70. };
  71. } else {
  72. location = {};
  73. }
  74. }
  75. return location;
  76. },
  77. /**
  78. * 回调函数默认处理
  79. */
  80. polyfillParam(param) {
  81. param.success = param.success || function () {};
  82. param.fail = param.fail || function () {};
  83. param.complete = param.complete || function () {};
  84. },
  85. /**
  86. * 验证param对应的key值是否为空
  87. *
  88. * @param {Object} param 接口参数
  89. * @param {String} key 对应参数的key
  90. */
  91. checkParamKeyEmpty(param, key) {
  92. if (!param[key]) {
  93. var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + key + '参数格式有误');
  94. param.fail(errconf);
  95. param.complete(errconf);
  96. return true;
  97. }
  98. return false;
  99. },
  100. /**
  101. * 验证参数中是否存在检索词keyword
  102. *
  103. * @param {Object} param 接口参数
  104. */
  105. checkKeyword(param) {
  106. return !this.checkParamKeyEmpty(param, 'keyword');
  107. },
  108. /**
  109. * 验证location值
  110. *
  111. * @param {Object} param 接口参数
  112. */
  113. checkLocation(param) {
  114. var location = this.getLocationParam(param.location);
  115. if (!location || !location.latitude || !location.longitude) {
  116. var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + ' location参数格式有误');
  117. param.fail(errconf);
  118. param.complete(errconf);
  119. return false;
  120. }
  121. return true;
  122. },
  123. /**
  124. * 构造错误数据结构
  125. * @param {Number} errCode 错误码
  126. * @param {Number} errMsg 错误描述
  127. */
  128. buildErrorConfig(errCode, errMsg) {
  129. return {
  130. status: errCode,
  131. message: errMsg
  132. };
  133. },
  134. /**
  135. * 构造微信请求参数,公共属性处理
  136. *
  137. * @param {Object} param 接口参数
  138. * @param {Object} param 配置项
  139. */
  140. buildWxRequestConfig(param, options) {
  141. var that = this;
  142. options.header = {
  143. 'content-type': 'application/json'
  144. };
  145. options.method = 'GET';
  146. options.success = function (res) {
  147. var data = res.data;
  148. if (data.status === 0) {
  149. param.success(data);
  150. } else {
  151. param.fail(data);
  152. }
  153. };
  154. options.fail = function (res) {
  155. res.statusCode = ERROR_CONF.WX_ERR_CODE;
  156. param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
  157. };
  158. options.complete = function (res) {
  159. var statusCode = +res.statusCode;
  160. switch (statusCode) {
  161. case ERROR_CONF.WX_ERR_CODE: {
  162. param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
  163. break;
  164. }
  165. case ERROR_CONF.WX_OK_CODE: {
  166. var data = res.data;
  167. if (data.status === 0) {
  168. param.complete(data);
  169. } else {
  170. param.complete(that.buildErrorConfig(data.status, data.message));
  171. }
  172. break;
  173. }
  174. default: {
  175. param.complete(that.buildErrorConfig(ERROR_CONF.SYSTEM_ERR, ERROR_CONF.SYSTEM_ERR_MSG));
  176. }
  177. }
  178. };
  179. return options;
  180. },
  181. /**
  182. * 处理用户参数是否传入坐标进行不同的处理
  183. */
  184. locationProcess(param, locationsuccess, locationfail, locationcomplete) {
  185. var that = this;
  186. locationfail =
  187. locationfail ||
  188. function (res) {
  189. res.statusCode = ERROR_CONF.WX_ERR_CODE;
  190. param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
  191. };
  192. locationcomplete =
  193. locationcomplete ||
  194. function (res) {
  195. if (res.statusCode == ERROR_CONF.WX_ERR_CODE) {
  196. param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
  197. }
  198. };
  199. if (!param.location) {
  200. that.getWXLocation(locationsuccess, locationfail, locationcomplete);
  201. } else if (that.checkLocation(param)) {
  202. var location = Utils.getLocationParam(param.location);
  203. locationsuccess(location);
  204. }
  205. }
  206. };
  207. class QQMapWX {
  208. /**
  209. * 构造函数
  210. *
  211. * @param {Object} options 接口参数,key 为必选参数
  212. */
  213. constructor(options) {
  214. if (!options.key) {
  215. throw Error('key值不能为空');
  216. }
  217. this.key = options.key;
  218. }
  219. /**
  220. * POI周边检索
  221. *
  222. * @param {Object} options 接口参数对象
  223. *
  224. * 参数对象结构可以参考
  225. * @see http://lbs.qq.com/webservice_v1/guide-search.html
  226. */
  227. search(options) {
  228. var that = this;
  229. options = options || {};
  230. Utils.polyfillParam(options);
  231. if (!Utils.checkKeyword(options)) {
  232. return;
  233. }
  234. var requestParam = {
  235. keyword: options.keyword,
  236. orderby: options.orderby || '_distance',
  237. page_size: options.page_size || 10,
  238. page_index: options.page_index || 1,
  239. output: 'json',
  240. key: that.key
  241. };
  242. if (options.address_format) {
  243. requestParam.address_format = options.address_format;
  244. }
  245. if (options.filter) {
  246. requestParam.filter = options.filter;
  247. }
  248. var distance = options.distance || '1000';
  249. var auto_extend = options.auto_extend || 1;
  250. var locationsuccess = function (result) {
  251. requestParam.boundary = 'nearby(' + result.latitude + ',' + result.longitude + ',' + distance + ',' + auto_extend + ')';
  252. uni.request(
  253. Utils.buildWxRequestConfig(options, {
  254. url: URL_SEARCH,
  255. data: requestParam
  256. })
  257. );
  258. };
  259. Utils.locationProcess(options, locationsuccess);
  260. }
  261. /**
  262. * sug模糊检索
  263. *
  264. * @param {Object} options 接口参数对象
  265. *
  266. * 参数对象结构可以参考
  267. * http://lbs.qq.com/webservice_v1/guide-suggestion.html
  268. */
  269. getSuggestion(options) {
  270. var that = this;
  271. options = options || {};
  272. Utils.polyfillParam(options);
  273. if (!Utils.checkKeyword(options)) {
  274. return;
  275. }
  276. var requestParam = {
  277. keyword: options.keyword,
  278. region: options.region || '全国',
  279. region_fix: options.region_fix || 0,
  280. policy: options.policy || 0,
  281. output: 'json',
  282. key: that.key
  283. };
  284. uni.request(
  285. Utils.buildWxRequestConfig(options, {
  286. url: URL_SUGGESTION,
  287. data: requestParam
  288. })
  289. );
  290. }
  291. /**
  292. * 逆地址解析
  293. *
  294. * @param {Object} options 接口参数对象
  295. *
  296. * 请求参数结构可以参考
  297. * http://lbs.qq.com/webservice_v1/guide-gcoder.html
  298. */
  299. reverseGeocoder(options) {
  300. var that = this;
  301. options = options || {};
  302. Utils.polyfillParam(options);
  303. var requestParam = {
  304. coord_type: options.coord_type || 5,
  305. get_poi: options.get_poi || 0,
  306. output: 'json',
  307. key: that.key
  308. };
  309. if (options.poi_options) {
  310. requestParam.poi_options = options.poi_options;
  311. }
  312. var locationsuccess = function (result) {
  313. requestParam.location = result.latitude + ',' + result.longitude;
  314. uni.request(
  315. Utils.buildWxRequestConfig(options, {
  316. url: URL_GET_GEOCODER,
  317. data: requestParam
  318. })
  319. );
  320. };
  321. Utils.locationProcess(options, locationsuccess);
  322. }
  323. /**
  324. * 地址解析
  325. *
  326. * @param {Object} options 接口参数对象
  327. *
  328. * 请求参数结构可以参考
  329. * http://lbs.qq.com/webservice_v1/guide-geocoder.html
  330. */
  331. geocoder(options) {
  332. var that = this;
  333. options = options || {};
  334. Utils.polyfillParam(options);
  335. if (Utils.checkParamKeyEmpty(options, 'address')) {
  336. return;
  337. }
  338. var requestParam = {
  339. address: options.address,
  340. output: 'json',
  341. key: that.key
  342. };
  343. uni.request(
  344. Utils.buildWxRequestConfig(options, {
  345. url: URL_GET_GEOCODER,
  346. data: requestParam
  347. })
  348. );
  349. }
  350. /**
  351. * 获取城市列表
  352. *
  353. * @param {Object} options 接口参数对象
  354. *
  355. * 请求参数结构可以参考
  356. * http://lbs.qq.com/webservice_v1/guide-region.html
  357. */
  358. getCityList(options) {
  359. var that = this;
  360. options = options || {};
  361. Utils.polyfillParam(options);
  362. var requestParam = {
  363. output: 'json',
  364. key: that.key
  365. };
  366. uni.request(
  367. Utils.buildWxRequestConfig(options, {
  368. url: URL_CITY_LIST,
  369. data: requestParam
  370. })
  371. );
  372. }
  373. /**
  374. * 获取对应城市ID的区县列表
  375. *
  376. * @param {Object} options 接口参数对象
  377. *
  378. * 请求参数结构可以参考
  379. * http://lbs.qq.com/webservice_v1/guide-region.html
  380. */
  381. getDistrictByCityId(options) {
  382. var that = this;
  383. options = options || {};
  384. Utils.polyfillParam(options);
  385. if (Utils.checkParamKeyEmpty(options, 'id')) {
  386. return;
  387. }
  388. var requestParam = {
  389. id: options.id || '',
  390. output: 'json',
  391. key: that.key
  392. };
  393. uni.request(
  394. Utils.buildWxRequestConfig(options, {
  395. url: URL_AREA_LIST,
  396. data: requestParam
  397. })
  398. );
  399. }
  400. /**
  401. * 用于单起点到多终点的路线距离(非直线距离)计算:
  402. * 支持两种距离计算方式:步行和驾车。
  403. * 起点到终点最大限制直线距离10公里。
  404. *
  405. * @param {Object} options 接口参数对象
  406. *
  407. * 请求参数结构可以参考
  408. * http://lbs.qq.com/webservice_v1/guide-distance.html
  409. */
  410. calculateDistance(options) {
  411. var that = this;
  412. options = options || {};
  413. Utils.polyfillParam(options);
  414. if (Utils.checkParamKeyEmpty(options, 'to')) {
  415. return;
  416. }
  417. var requestParam = {
  418. mode: options.mode || 'walking',
  419. to: Utils.location2query(options.to),
  420. output: 'json',
  421. key: that.key
  422. };
  423. var locationsuccess = function (result) {
  424. requestParam.from = result.latitude + ',' + result.longitude;
  425. uni.request(
  426. Utils.buildWxRequestConfig(options, {
  427. url: URL_DISTANCE,
  428. data: requestParam
  429. })
  430. );
  431. };
  432. if (options.from) {
  433. options.location = options.from;
  434. }
  435. Utils.locationProcess(options, locationsuccess);
  436. }
  437. }
  438. module.exports = QQMapWX;