qqmap-wx-jssdk.min.js 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. var _createClass = function () {
  2. function a(e, c) {
  3. for (var b = 0; b < c.length; b++) {
  4. var d = c[b];
  5. d.enumerable = d.enumerable || false;
  6. d.configurable = true;
  7. if ("value" in d) {
  8. d.writable = true;
  9. }
  10. Object.defineProperty(e, d.key, d);
  11. }
  12. }
  13. return function (d, b, c) {
  14. if (b) {
  15. a(d.prototype, b);
  16. }
  17. if (c) {
  18. a(d, c);
  19. }
  20. return d;
  21. };
  22. }();
  23. function _classCallCheck(a, b) {
  24. if (!(a instanceof b)) {
  25. throw new TypeError("Cannot call a class as a function");
  26. }
  27. }
  28. var ERROR_CONF = {
  29. KEY_ERR: 311,
  30. KEY_ERR_MSG: "key格式错误",
  31. PARAM_ERR: 310,
  32. PARAM_ERR_MSG: "请求参数信息有误",
  33. SYSTEM_ERR: 600,
  34. SYSTEM_ERR_MSG: "系统错误",
  35. WX_ERR_CODE: 1000,
  36. WX_OK_CODE: 200
  37. };
  38. var BASE_URL = "https://apis.map.qq.com/ws/";
  39. var URL_SEARCH = BASE_URL + "place/v1/search";
  40. var URL_SUGGESTION = BASE_URL + "place/v1/suggestion";
  41. var URL_GET_GEOCODER = BASE_URL + "geocoder/v1/";
  42. var URL_CITY_LIST = BASE_URL + "district/v1/list";
  43. var URL_AREA_LIST = BASE_URL + "district/v1/getchildren";
  44. var URL_DISTANCE = BASE_URL + "distance/v1/";
  45. var Utils = {
  46. location2query: function location2query(c) {
  47. if (typeof c == "string") {
  48. return c;
  49. }
  50. var b = "";
  51. for (var a = 0; a < c.length; a++) {
  52. var e = c[a];
  53. if (!!b) {
  54. b += ";";
  55. }
  56. if (e.location) {
  57. b = b + e.location.lat + "," + e.location.lng;
  58. }
  59. if (e.latitude && e.longitude) {
  60. b = b + e.latitude + "," + e.longitude;
  61. }
  62. }
  63. return b;
  64. },
  65. getWXLocation: function getWXLocation(c, b, a) {
  66. uni.getLocation({
  67. type: "gcj02",
  68. success: c,
  69. fail: b,
  70. complete: a
  71. });
  72. },
  73. getLocationParam: function getLocationParam(b) {
  74. if (typeof b == "string") {
  75. var a = b.split(",");
  76. if (a.length === 2) {
  77. b = {
  78. latitude: b.split(",")[0],
  79. longitude: b.split(",")[1]
  80. };
  81. } else {
  82. b = {};
  83. }
  84. }
  85. return b;
  86. },
  87. polyfillParam: function polyfillParam(a) {
  88. a.success = a.success || function () {};
  89. a.fail = a.fail || function () {};
  90. a.complete = a.complete || function () {};
  91. },
  92. checkParamKeyEmpty: function checkParamKeyEmpty(c, b) {
  93. if (!c[b]) {
  94. var a = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + b + "参数格式有误");
  95. c.fail(a);
  96. c.complete(a);
  97. return true;
  98. }
  99. return false;
  100. },
  101. checkKeyword: function checkKeyword(a) {
  102. return !this.checkParamKeyEmpty(a, "keyword");
  103. },
  104. checkLocation: function checkLocation(c) {
  105. var a = this.getLocationParam(c.location);
  106. if (!a || !a.latitude || !a.longitude) {
  107. var b = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + " location参数格式有误");
  108. c.fail(b);
  109. c.complete(b);
  110. return false;
  111. }
  112. return true;
  113. },
  114. buildErrorConfig: function buildErrorConfig(a, b) {
  115. return {
  116. status: a,
  117. message: b
  118. };
  119. },
  120. buildWxRequestConfig: function buildWxRequestConfig(c, a) {
  121. var b = this;
  122. a.header = {
  123. "content-type": "application/json"
  124. };
  125. a.method = "GET";
  126. a.success = function (d) {
  127. var e = d.data;
  128. if (e.status === 0) {
  129. c.success(e);
  130. } else {
  131. c.fail(e);
  132. }
  133. };
  134. a.fail = function (d) {
  135. d.statusCode = ERROR_CONF.WX_ERR_CODE;
  136. c.fail(b.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, result.errMsg));
  137. };
  138. a.complete = function (d) {
  139. var e = +d.statusCode;
  140. switch (e) {
  141. case ERROR_CONF.WX_ERR_CODE:
  142. c.complete(b.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, d.errMsg));
  143. break;
  144. case ERROR_CONF.WX_OK_CODE:
  145. var f = d.data;
  146. if (f.status === 0) {
  147. c.complete(f);
  148. } else {
  149. c.complete(b.buildErrorConfig(f.status, f.message));
  150. }
  151. break;
  152. default:
  153. c.complete(b.buildErrorConfig(ERROR_CONF.SYSTEM_ERR, ERROR_CONF.SYSTEM_ERR_MSG));
  154. }
  155. };
  156. return a;
  157. },
  158. locationProcess: function locationProcess(f, e, c, a) {
  159. var d = this;
  160. c = c || function (g) {
  161. g.statusCode = ERROR_CONF.WX_ERR_CODE;
  162. f.fail(d.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, g.errMsg));
  163. };
  164. a = a || function (g) {
  165. if (g.statusCode == ERROR_CONF.WX_ERR_CODE) {
  166. f.complete(d.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, g.errMsg));
  167. }
  168. };
  169. if (!f.location) {
  170. d.getWXLocation(e, c, a);
  171. } else {
  172. if (d.checkLocation(f)) {
  173. var b = Utils.getLocationParam(f.location);
  174. e(b);
  175. }
  176. }
  177. }
  178. };
  179. var QQMapWX = function () {
  180. function b(i) {
  181. _classCallCheck(this, b);
  182. if (!i.key) {
  183. throw Error("key值不能为空");
  184. }
  185. this.key = i.key;
  186. }
  187. _createClass(b, [{
  188. key: "search",
  189. value: function f(i) {
  190. var l = this;
  191. i = i || {};
  192. Utils.polyfillParam(i);
  193. if (!Utils.checkKeyword(i)) {
  194. return;
  195. }
  196. var k = {
  197. keyword: i.keyword,
  198. orderby: i.orderby || "_distance",
  199. page_size: i.page_size || 10,
  200. page_index: i.page_index || 1,
  201. output: "json",
  202. key: l.key
  203. };
  204. if (i.address_format) {
  205. k.address_format = i.address_format;
  206. }
  207. if (i.filter) {
  208. k.filter = i.filter;
  209. }
  210. var n = i.distance || "1000";
  211. var j = i.auto_extend || 1;
  212. var m = function m(o) {
  213. k.boundary = "nearby(" + o.latitude + "," + o.longitude + "," + n + "," + j + ")";
  214. uni.request(Utils.buildWxRequestConfig(i, {
  215. url: URL_SEARCH,
  216. data: k
  217. }));
  218. };
  219. Utils.locationProcess(i, m);
  220. }
  221. }, {
  222. key: "getSuggestion",
  223. value: function h(i) {
  224. var k = this;
  225. i = i || {};
  226. Utils.polyfillParam(i);
  227. if (!Utils.checkKeyword(i)) {
  228. return;
  229. }
  230. var j = {
  231. keyword: i.keyword,
  232. region: i.region || "全国",
  233. region_fix: i.region_fix || 0,
  234. policy: i.policy || 0,
  235. output: "json",
  236. key: k.key
  237. };
  238. uni.request(Utils.buildWxRequestConfig(i, {
  239. url: URL_SUGGESTION,
  240. data: j
  241. }));
  242. }
  243. }, {
  244. key: "reverseGeocoder",
  245. value: function a(i) {
  246. var k = this;
  247. i = i || {};
  248. Utils.polyfillParam(i);
  249. var j = {
  250. coord_type: i.coord_type || 5,
  251. get_poi: i.get_poi || 0,
  252. output: "json",
  253. key: k.key
  254. };
  255. if (i.poi_options) {
  256. j.poi_options = i.poi_options;
  257. }
  258. var l = function l(m) {
  259. j.location = m.latitude + "," + m.longitude;
  260. uni.request(Utils.buildWxRequestConfig(i, {
  261. url: URL_GET_GEOCODER,
  262. data: j
  263. }));
  264. };
  265. Utils.locationProcess(i, l);
  266. }
  267. }, {
  268. key: "geocoder",
  269. value: function g(i) {
  270. var k = this;
  271. i = i || {};
  272. Utils.polyfillParam(i);
  273. if (Utils.checkParamKeyEmpty(i, "address")) {
  274. return;
  275. }
  276. var j = {
  277. address: i.address,
  278. output: "json",
  279. key: k.key
  280. };
  281. uni.request(Utils.buildWxRequestConfig(i, {
  282. url: URL_GET_GEOCODER,
  283. data: j
  284. }));
  285. }
  286. }, {
  287. key: "getCityList",
  288. value: function c(i) {
  289. var k = this;
  290. i = i || {};
  291. Utils.polyfillParam(i);
  292. var j = {
  293. output: "json",
  294. key: k.key
  295. };
  296. uni.request(Utils.buildWxRequestConfig(i, {
  297. url: URL_CITY_LIST,
  298. data: j
  299. }));
  300. }
  301. }, {
  302. key: "getDistrictByCityId",
  303. value: function d(i) {
  304. var k = this;
  305. i = i || {};
  306. Utils.polyfillParam(i);
  307. if (Utils.checkParamKeyEmpty(i, "id")) {
  308. return;
  309. }
  310. var j = {
  311. id: i.id || "",
  312. output: "json",
  313. key: k.key
  314. };
  315. uni.request(Utils.buildWxRequestConfig(i, {
  316. url: URL_AREA_LIST,
  317. data: j
  318. }));
  319. }
  320. }, {
  321. key: "calculateDistance",
  322. value: function e(i) {
  323. var k = this;
  324. i = i || {};
  325. Utils.polyfillParam(i);
  326. if (Utils.checkParamKeyEmpty(i, "to")) {
  327. return;
  328. }
  329. var j = {
  330. mode: i.mode || "walking",
  331. to: Utils.location2query(i.to),
  332. output: "json",
  333. key: k.key
  334. };
  335. var l = function l(m) {
  336. j.from = m.latitude + "," + m.longitude;
  337. uni.request(Utils.buildWxRequestConfig(i, {
  338. url: URL_DISTANCE,
  339. data: j
  340. }));
  341. };
  342. if (i.from) {
  343. i.location = i.from;
  344. }
  345. Utils.locationProcess(i, l);
  346. }
  347. }]);
  348. return b;
  349. }();
  350. module.exports = QQMapWX;