qqmap-wx-jssdk.js 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742
  1. /**
  2. * 微信小程序JavaScriptSDK
  3. * 地图
  4. * 苍源怡家
  5. * @version 1.1
  6. * @date 2019-01-20
  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 EARTH_RADIUS = 6378136.49;
  26. var Utils = {
  27. /**
  28. * 得到终点query字符串
  29. * @param {Array|String} 检索数据
  30. */
  31. location2query(data) {
  32. if (typeof data == 'string') {
  33. return data;
  34. }
  35. var query = '';
  36. for (var i = 0; i < data.length; i++) {
  37. var d = data[i];
  38. if (!!query) {
  39. query += ';';
  40. }
  41. if (d.location) {
  42. query = query + d.location.lat + ',' + d.location.lng;
  43. }
  44. if (d.latitude && d.longitude) {
  45. query = query + d.latitude + ',' + d.longitude;
  46. }
  47. }
  48. return query;
  49. },
  50. /**
  51. * 计算角度
  52. */
  53. rad(d) {
  54. return d * Math.PI / 180.0;
  55. },
  56. /**
  57. * 处理终点location数组
  58. * @return 返回终点数组
  59. */
  60. getEndLocation(location){
  61. var to = location.split(';');
  62. var endLocation = [];
  63. for (var i = 0; i < to.length; i++) {
  64. endLocation.push({
  65. lat: parseFloat(to[i].split(',')[0]),
  66. lng: parseFloat(to[i].split(',')[1])
  67. })
  68. }
  69. return endLocation;
  70. },
  71. /**
  72. * 计算两点间直线距离
  73. * @param a 表示纬度差
  74. * @param b 表示经度差
  75. * @return 返回的是距离,单位m
  76. */
  77. getDistance(latFrom, lngFrom, latTo, lngTo) {
  78. var radLatFrom = this.rad(latFrom);
  79. var radLatTo = this.rad(latTo);
  80. var a = radLatFrom - radLatTo;
  81. var b = this.rad(lngFrom) - this.rad(lngTo);
  82. var distance = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(radLatFrom) * Math.cos(radLatTo) * Math.pow(Math.sin(b / 2), 2)));
  83. distance = distance * EARTH_RADIUS;
  84. distance = Math.round(distance * 10000) / 10000;
  85. return parseFloat(distance.toFixed(0));
  86. },
  87. /**
  88. * 使用微信接口进行定位
  89. */
  90. getWXLocation(success, fail, complete) {
  91. wx.getLocation({
  92. type: 'gcj02',
  93. success: success,
  94. fail: fail,
  95. complete: complete
  96. });
  97. },
  98. /**
  99. * 获取location参数
  100. */
  101. getLocationParam(location) {
  102. if (typeof location == 'string') {
  103. var locationArr = location.split(',');
  104. if (locationArr.length === 2) {
  105. location = {
  106. latitude: location.split(',')[0],
  107. longitude: location.split(',')[1]
  108. };
  109. } else {
  110. location = {};
  111. }
  112. }
  113. return location;
  114. },
  115. /**
  116. * 回调函数默认处理
  117. */
  118. polyfillParam(param) {
  119. param.success = param.success || function () { };
  120. param.fail = param.fail || function () { };
  121. param.complete = param.complete || function () { };
  122. },
  123. /**
  124. * 验证param对应的key值是否为空
  125. *
  126. * @param {Object} param 接口参数
  127. * @param {String} key 对应参数的key
  128. */
  129. checkParamKeyEmpty(param, key) {
  130. if (!param[key]) {
  131. var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + key +'参数格式有误');
  132. param.fail(errconf);
  133. param.complete(errconf);
  134. return true;
  135. }
  136. return false;
  137. },
  138. /**
  139. * 验证参数中是否存在检索词keyword
  140. *
  141. * @param {Object} param 接口参数
  142. */
  143. checkKeyword(param){
  144. return !this.checkParamKeyEmpty(param, 'keyword');
  145. },
  146. /**
  147. * 验证location值
  148. *
  149. * @param {Object} param 接口参数
  150. */
  151. checkLocation(param) {
  152. var location = this.getLocationParam(param.location);
  153. if (!location || !location.latitude || !location.longitude) {
  154. var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + ' location参数格式有误');
  155. param.fail(errconf);
  156. param.complete(errconf);
  157. return false;
  158. }
  159. return true;
  160. },
  161. /**
  162. * 构造错误数据结构
  163. * @param {Number} errCode 错误码
  164. * @param {Number} errMsg 错误描述
  165. */
  166. buildErrorConfig(errCode, errMsg) {
  167. return {
  168. status: errCode,
  169. message: errMsg
  170. };
  171. },
  172. /**
  173. *
  174. * 数据处理函数
  175. * 根据传入参数不同处理不同数据
  176. * @param {String} feature 功能名称
  177. * search 地点搜索
  178. * suggest关键词提示
  179. * reverseGeocoder逆地址解析
  180. * geocoder地址解析
  181. * getCityList获取城市列表:父集
  182. * getDistrictByCityId获取区县列表:子集
  183. * calculateDistance距离计算
  184. * @param {Object} param 接口参数
  185. * @param {Object} data 数据
  186. */
  187. handleData(param,data,feature){
  188. if (feature === 'search') {
  189. var searchResult = data.data;
  190. var searchSimplify = [];
  191. for (var i = 0; i < searchResult.length; i++) {
  192. searchSimplify.push({
  193. id: searchResult[i].id || null,
  194. title: searchResult[i].title || null,
  195. latitude: searchResult[i].location && searchResult[i].location.lat || null,
  196. longitude: searchResult[i].location && searchResult[i].location.lng || null,
  197. address: searchResult[i].address || null,
  198. category: searchResult[i].category || null,
  199. tel: searchResult[i].tel || null,
  200. adcode: searchResult[i].ad_info && searchResult[i].ad_info.adcode || null,
  201. city: searchResult[i].ad_info && searchResult[i].ad_info.city || null,
  202. district: searchResult[i].ad_info && searchResult[i].ad_info.district || null,
  203. province: searchResult[i].ad_info && searchResult[i].ad_info.province || null
  204. })
  205. }
  206. param.success(data, {
  207. searchResult: searchResult,
  208. searchSimplify: searchSimplify
  209. })
  210. } else if (feature === 'suggest') {
  211. var suggestResult = data.data;
  212. var suggestSimplify = [];
  213. for (var i = 0; i < suggestResult.length; i++) {
  214. suggestSimplify.push({
  215. adcode: suggestResult[i].adcode || null,
  216. address: suggestResult[i].address || null,
  217. category: suggestResult[i].category || null,
  218. city: suggestResult[i].city || null,
  219. district: suggestResult[i].district || null,
  220. id: suggestResult[i].id || null,
  221. latitude: suggestResult[i].location && suggestResult[i].location.lat || null,
  222. longitude: suggestResult[i].location && suggestResult[i].location.lng || null,
  223. province: suggestResult[i].province || null,
  224. title: suggestResult[i].title || null,
  225. type: suggestResult[i].type || null
  226. })
  227. }
  228. param.success(data, {
  229. suggestResult: suggestResult,
  230. suggestSimplify: suggestSimplify
  231. })
  232. } else if (feature === 'reverseGeocoder') {
  233. var reverseGeocoderResult = data.result;
  234. var reverseGeocoderSimplify = {
  235. address: reverseGeocoderResult.address || null,
  236. latitude: reverseGeocoderResult.location && reverseGeocoderResult.location.lat || null,
  237. longitude: reverseGeocoderResult.location && reverseGeocoderResult.location.lng || null,
  238. adcode: reverseGeocoderResult.ad_info && reverseGeocoderResult.ad_info.adcode || null,
  239. city: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.city || null,
  240. district: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.district || null,
  241. nation: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.nation || null,
  242. province: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.province || null,
  243. street: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.street || null,
  244. street_number: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.street_number || null,
  245. recommend: reverseGeocoderResult.formatted_addresses && reverseGeocoderResult.formatted_addresses.recommend || null,
  246. rough: reverseGeocoderResult.formatted_addresses && reverseGeocoderResult.formatted_addresses.rough || null
  247. };
  248. if (reverseGeocoderResult.pois) {//判断是否返回周边poi
  249. var pois = reverseGeocoderResult.pois;
  250. var poisSimplify = [];
  251. for (var i = 0;i < pois.length;i++) {
  252. poisSimplify.push({
  253. id: pois[i].id || null,
  254. title: pois[i].title || null,
  255. latitude: pois[i].location && pois[i].location.lat || null,
  256. longitude: pois[i].location && pois[i].location.lng || null,
  257. address: pois[i].address || null,
  258. category: pois[i].category || null,
  259. adcode: pois[i].ad_info && pois[i].ad_info.adcode || null,
  260. city: pois[i].ad_info && pois[i].ad_info.city || null,
  261. district: pois[i].ad_info && pois[i].ad_info.district || null,
  262. province: pois[i].ad_info && pois[i].ad_info.province || null
  263. })
  264. }
  265. param.success(data,{
  266. reverseGeocoderResult: reverseGeocoderResult,
  267. reverseGeocoderSimplify: reverseGeocoderSimplify,
  268. pois: pois,
  269. poisSimplify: poisSimplify
  270. })
  271. } else {
  272. param.success(data, {
  273. reverseGeocoderResult: reverseGeocoderResult,
  274. reverseGeocoderSimplify: reverseGeocoderSimplify
  275. })
  276. }
  277. } else if (feature === 'geocoder') {
  278. var geocoderResult = data.result;
  279. var geocoderSimplify = {
  280. title: geocoderResult.title || null,
  281. latitude: geocoderResult.location && geocoderResult.location.lat || null,
  282. longitude: geocoderResult.location && geocoderResult.location.lng || null,
  283. adcode: geocoderResult.ad_info && geocoderResult.ad_info.adcode || null,
  284. province: geocoderResult.address_components && geocoderResult.address_components.province || null,
  285. city: geocoderResult.address_components && geocoderResult.address_components.city || null,
  286. district: geocoderResult.address_components && geocoderResult.address_components.district || null,
  287. street: geocoderResult.address_components && geocoderResult.address_components.street || null,
  288. street_number: geocoderResult.address_components && geocoderResult.address_components.street_number || null,
  289. level: geocoderResult.level || null
  290. };
  291. param.success(data,{
  292. geocoderResult: geocoderResult,
  293. geocoderSimplify: geocoderSimplify
  294. });
  295. } else if (feature === 'getCityList') {
  296. var provinceResult = data.result[0];
  297. var cityResult = data.result[1];
  298. var districtResult = data.result[2];
  299. param.success(data,{
  300. provinceResult: provinceResult,
  301. cityResult: cityResult,
  302. districtResult: districtResult
  303. });
  304. } else if (feature === 'getDistrictByCityId') {
  305. var districtByCity = data.result[0];
  306. param.success(data, districtByCity);
  307. } else if (feature === 'calculateDistance') {
  308. var calculateDistanceResult = data.result.elements;
  309. var distance = [];
  310. for (var i = 0; i < calculateDistanceResult.length; i++){
  311. distance.push(calculateDistanceResult[i].distance);
  312. }
  313. param.success(data, {
  314. calculateDistanceResult: calculateDistanceResult,
  315. distance: distance
  316. });
  317. } else {
  318. param.success(data);
  319. }
  320. },
  321. /**
  322. * 构造微信请求参数,公共属性处理
  323. *
  324. * @param {Object} param 接口参数
  325. * @param {Object} param 配置项
  326. * @param {String} feature 方法名
  327. */
  328. buildWxRequestConfig(param, options, feature) {
  329. var that = this;
  330. options.header = { "content-type": "application/json" };
  331. options.method = 'GET';
  332. options.success = function (res) {
  333. var data = res.data;
  334. if (data.status === 0) {
  335. that.handleData(param, data, feature);
  336. } else {
  337. param.fail(data);
  338. }
  339. };
  340. options.fail = function (res) {
  341. res.statusCode = ERROR_CONF.WX_ERR_CODE;
  342. param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
  343. };
  344. options.complete = function (res) {
  345. var statusCode = +res.statusCode;
  346. switch(statusCode) {
  347. case ERROR_CONF.WX_ERR_CODE: {
  348. param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
  349. break;
  350. }
  351. case ERROR_CONF.WX_OK_CODE: {
  352. var data = res.data;
  353. if (data.status === 0) {
  354. param.complete(data);
  355. } else {
  356. param.complete(that.buildErrorConfig(data.status, data.message));
  357. }
  358. break;
  359. }
  360. default:{
  361. param.complete(that.buildErrorConfig(ERROR_CONF.SYSTEM_ERR, ERROR_CONF.SYSTEM_ERR_MSG));
  362. }
  363. }
  364. };
  365. return options;
  366. },
  367. /**
  368. * 处理用户参数是否传入坐标进行不同的处理
  369. */
  370. locationProcess(param, locationsuccess, locationfail, locationcomplete) {
  371. var that = this;
  372. locationfail = locationfail || function (res) {
  373. res.statusCode = ERROR_CONF.WX_ERR_CODE;
  374. param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
  375. };
  376. locationcomplete = locationcomplete || function (res) {
  377. if (res.statusCode == ERROR_CONF.WX_ERR_CODE) {
  378. param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
  379. }
  380. };
  381. if (!param.location) {
  382. that.getWXLocation(locationsuccess, locationfail, locationcomplete);
  383. } else if (that.checkLocation(param)) {
  384. var location = Utils.getLocationParam(param.location);
  385. locationsuccess(location);
  386. }
  387. }
  388. };
  389. class QQMapWX {
  390. /**
  391. * 构造函数
  392. *
  393. * @param {Object} options 接口参数,key 为必选参数
  394. */
  395. constructor(options) {
  396. if (!options.key) {
  397. throw Error('key值不能为空');
  398. }
  399. this.key = options.key;
  400. };
  401. /**
  402. * POI周边检索
  403. *
  404. * @param {Object} options 接口参数对象
  405. *
  406. * 参数对象结构可以参考
  407. * @see http://lbs.qq.com/webservice_v1/guide-search.html
  408. */
  409. search(options) {
  410. var that = this;
  411. options = options || {};
  412. Utils.polyfillParam(options);
  413. if (!Utils.checkKeyword(options)) {
  414. return;
  415. }
  416. var requestParam = {
  417. keyword: options.keyword,
  418. orderby: options.orderby || '_distance',
  419. page_size: options.page_size || 10,
  420. page_index: options.page_index || 1,
  421. output: 'json',
  422. key: that.key
  423. };
  424. if (options.address_format) {
  425. requestParam.address_format = options.address_format;
  426. }
  427. if (options.filter) {
  428. requestParam.filter = options.filter;
  429. }
  430. var distance = options.distance || "1000";
  431. var auto_extend = options.auto_extend || 1;
  432. var region = null;
  433. var rectangle = null;
  434. //判断城市限定参数
  435. if (options.region) {
  436. region = options.region;
  437. }
  438. //矩形限定坐标(暂时只支持字符串格式)
  439. if (options.rectangle) {
  440. rectangle = options.rectangle;
  441. }
  442. var locationsuccess = function (result) {
  443. if (region && !rectangle) {
  444. //城市限定参数拼接
  445. requestParam.boundary = "region(" + region + "," + auto_extend + "," + result.latitude + "," + result.longitude + ")";
  446. } else if (rectangle && !region) {
  447. //矩形搜索
  448. requestParam.boundary = "rectangle(" + rectangle + ")";
  449. } else {
  450. requestParam.boundary = "nearby(" + result.latitude + "," + result.longitude + "," + distance + "," + auto_extend + ")";
  451. }
  452. wx.request(Utils.buildWxRequestConfig(options, {
  453. url: URL_SEARCH,
  454. data: requestParam
  455. }, 'search'));
  456. };
  457. Utils.locationProcess(options, locationsuccess);
  458. };
  459. /**
  460. * sug模糊检索
  461. *
  462. * @param {Object} options 接口参数对象
  463. *
  464. * 参数对象结构可以参考
  465. * http://lbs.qq.com/webservice_v1/guide-suggestion.html
  466. */
  467. getSuggestion(options) {
  468. var that = this;
  469. options = options || {};
  470. Utils.polyfillParam(options);
  471. if (!Utils.checkKeyword(options)) {
  472. return;
  473. }
  474. var requestParam = {
  475. keyword: options.keyword,
  476. region: options.region || '全国',
  477. region_fix: options.region_fix || 0,
  478. policy: options.policy || 0,
  479. page_size: options.page_size || 10,//控制显示条数
  480. page_index: options.page_index || 1,//控制页数
  481. get_subpois : options.get_subpois || 0,//返回子地点
  482. output: 'json',
  483. key: that.key
  484. };
  485. //长地址
  486. if (options.address_format) {
  487. requestParam.address_format = options.address_format;
  488. }
  489. //过滤
  490. if (options.filter) {
  491. requestParam.filter = options.filter;
  492. }
  493. //排序
  494. if (options.location) {
  495. var locationsuccess = function (result) {
  496. requestParam.location = result.latitude + ',' + result.longitude;
  497. wx.request(Utils.buildWxRequestConfig(options, {
  498. url: URL_SUGGESTION,
  499. data: requestParam
  500. }, "suggest"));
  501. };
  502. Utils.locationProcess(options, locationsuccess);
  503. } else {
  504. wx.request(Utils.buildWxRequestConfig(options, {
  505. url: URL_SUGGESTION,
  506. data: requestParam
  507. }, "suggest"));
  508. }
  509. };
  510. /**
  511. * 逆地址解析
  512. *
  513. * @param {Object} options 接口参数对象
  514. *
  515. * 请求参数结构可以参考
  516. * http://lbs.qq.com/webservice_v1/guide-gcoder.html
  517. */
  518. reverseGeocoder(options) {
  519. console.log(options)
  520. var that = this;
  521. options = options || {};
  522. Utils.polyfillParam(options);
  523. var requestParam = {
  524. coord_type: options.coord_type || 5,
  525. get_poi: options.get_poi || 0,
  526. output: 'json',
  527. key: that.key
  528. };
  529. if (options.poi_options) {
  530. requestParam.poi_options = options.poi_options
  531. }
  532. var locationsuccess = function (result) {
  533. requestParam.location = result.latitude + ',' + result.longitude;
  534. wx.request(Utils.buildWxRequestConfig(options, {
  535. url: URL_GET_GEOCODER,
  536. data: requestParam
  537. }, 'reverseGeocoder'));
  538. };
  539. Utils.locationProcess(options, locationsuccess);
  540. };
  541. /**
  542. * 地址解析
  543. *
  544. * @param {Object} options 接口参数对象
  545. *
  546. * 请求参数结构可以参考
  547. * http://lbs.qq.com/webservice_v1/guide-geocoder.html
  548. */
  549. geocoder(options) {
  550. var that = this;
  551. options = options || {};
  552. Utils.polyfillParam(options);
  553. if (Utils.checkParamKeyEmpty(options, 'address')) {
  554. return;
  555. }
  556. var requestParam = {
  557. address: options.address,
  558. output: 'json',
  559. key: that.key
  560. };
  561. //城市限定
  562. if (options.region) {
  563. requestParam.region = options.region;
  564. }
  565. wx.request(Utils.buildWxRequestConfig(options, {
  566. url: URL_GET_GEOCODER,
  567. data: requestParam
  568. },'geocoder'));
  569. };
  570. /**
  571. * 获取城市列表
  572. *
  573. * @param {Object} options 接口参数对象
  574. *
  575. * 请求参数结构可以参考
  576. * http://lbs.qq.com/webservice_v1/guide-region.html
  577. */
  578. getCityList(options) {
  579. var that = this;
  580. options = options || {};
  581. Utils.polyfillParam(options);
  582. var requestParam = {
  583. output: 'json',
  584. key: that.key
  585. };
  586. wx.request(Utils.buildWxRequestConfig(options, {
  587. url: URL_CITY_LIST,
  588. data: requestParam
  589. },'getCityList'));
  590. };
  591. /**
  592. * 获取对应城市ID的区县列表
  593. *
  594. * @param {Object} options 接口参数对象
  595. *
  596. * 请求参数结构可以参考
  597. * http://lbs.qq.com/webservice_v1/guide-region.html
  598. */
  599. getDistrictByCityId(options) {
  600. var that = this;
  601. options = options || {};
  602. Utils.polyfillParam(options);
  603. if (Utils.checkParamKeyEmpty(options, 'id')) {
  604. return;
  605. }
  606. var requestParam = {
  607. id: options.id || '',
  608. output: 'json',
  609. key: that.key
  610. };
  611. wx.request(Utils.buildWxRequestConfig(options, {
  612. url: URL_AREA_LIST,
  613. data: requestParam
  614. },'getDistrictByCityId'));
  615. };
  616. /**
  617. * 用于单起点到多终点的路线距离(非直线距离)计算:
  618. * 支持两种距离计算方式:步行和驾车。
  619. * 起点到终点最大限制直线距离10公里。
  620. *
  621. * 新增直线距离计算。
  622. *
  623. * @param {Object} options 接口参数对象
  624. *
  625. * 请求参数结构可以参考
  626. * http://lbs.qq.com/webservice_v1/guide-distance.html
  627. */
  628. calculateDistance(options) {
  629. var that = this;
  630. options = options || {};
  631. Utils.polyfillParam(options);
  632. if (Utils.checkParamKeyEmpty(options, 'to')) {
  633. return;
  634. }
  635. var requestParam = {
  636. mode: options.mode || 'walking',
  637. to: Utils.location2query(options.to),
  638. output: 'json',
  639. key: that.key
  640. };
  641. if (options.from) {
  642. options.location = options.from;
  643. }
  644. //计算直线距离
  645. if(requestParam.mode == 'straight'){
  646. var locationsuccess = function (result) {
  647. var locationTo = Utils.getEndLocation(requestParam.to);//处理终点坐标
  648. var data = {
  649. message:"query ok",
  650. result:{
  651. elements:[]
  652. },
  653. status:0
  654. };
  655. for (var i = 0; i < locationTo.length; i++) {
  656. data.result.elements.push({//将坐标存入
  657. distance: Utils.getDistance(result.latitude, result.longitude, locationTo[i].lat, locationTo[i].lng),
  658. duration:0,
  659. from:{
  660. lat: result.latitude,
  661. lng:result.longitude
  662. },
  663. to:{
  664. lat: locationTo[i].lat,
  665. lng: locationTo[i].lng
  666. }
  667. });
  668. }
  669. var calculateResult = data.result.elements;
  670. var distanceResult = [];
  671. for (var i = 0; i < calculateResult.length; i++) {
  672. distanceResult.push(calculateResult[i].distance);
  673. }
  674. return options.success(data,{
  675. calculateResult: calculateResult,
  676. distanceResult: distanceResult
  677. });
  678. };
  679. Utils.locationProcess(options, locationsuccess);
  680. } else {
  681. var locationsuccess = function (result) {
  682. requestParam.from = result.latitude + ',' + result.longitude;
  683. wx.request(Utils.buildWxRequestConfig(options, {
  684. url: URL_DISTANCE,
  685. data: requestParam
  686. },'calculateDistance'));
  687. };
  688. Utils.locationProcess(options, locationsuccess);
  689. }
  690. }
  691. };
  692. module.exports = QQMapWX;