accounts.js 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. // pages/accounts/accounts.js
  2. Page({
  3. data:{
  4. },
  5. onLoad:function(options){
  6. this.setData({
  7. latitude: 30.1860300000,
  8. longitude: 120.1943600000,
  9. markers: [{
  10. latitude: 30.1860300000,
  11. longitude: 120.1943600000,
  12. name: 'T.I.T 创意园'
  13. }],
  14. covers: [{
  15. latitude: 30.1860300000,
  16. longitude: 120.1943600000,
  17. iconPath: '/image/location.png'
  18. }, {
  19. latitude: 30.1860300000,
  20. longitude: 120.1943600000,
  21. iconPath: '/image/location.png'
  22. }],
  23. polygons: [{
  24. points: [
  25. {
  26. latitude: 30.1860300000,
  27. longitude: 120.1943600000,
  28. },
  29. {
  30. latitude: 30.1860300000,
  31. longitude: 120.1943600000,
  32. },
  33. {
  34. latitude: 30.1860300000,
  35. longitude: 120.1943600000,
  36. }
  37. ],
  38. strokeWidth: 3,
  39. strokeColor: '#FFFFFFAA',
  40. }],
  41. subKey: 'B5QBZ-7JTLU-DSSVA-2BRJ3-TNXLF-2TBR7',
  42. enable3d: false,
  43. showCompass: false,
  44. enableOverlooking: false,
  45. enableZoom: true,
  46. enableScroll: true,
  47. enableRotate: false,
  48. drawPolygon: false,
  49. productBottom : { //联系我们
  50. // images : "https://rlzcgl.oss-cn-beijing.aliyuncs.com/wxminiprogram/images/bottom.png"
  51. title : "杭州任联科技有限公司",
  52. address : "地址: 杭州市滨江区长河路475号和瑞科技园S2幢11楼",
  53. url : "网址: http://www.renlianiot.com",
  54. phone : "服务热线: 0571-85458286",
  55. email : "咨询邮箱: vip@renlianiot.com"
  56. }
  57. });
  58. console.log(this.data);
  59. // 页面初始化 options为页面跳转所带来的参数
  60. },
  61. onReady:function(){
  62. // 页面渲染完成
  63. wx.setNavigationBarTitle({
  64. title: '联系我们'
  65. })
  66. },
  67. onShow:function(){
  68. // 页面显示
  69. },
  70. onHide:function(){
  71. // 页面隐藏
  72. },
  73. onUnload:function(){
  74. // 页面关闭
  75. }
  76. })