map.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <!--
  2. * @Description: 地图
  3. * @Author: wangcc
  4. * @Date: 2023-01-09 11:19:36
  5. * @LastEditors: wangcc
  6. * @LastEditTime: 2023-01-11 17:35:00
  7. * @FilePath: \parking_LargeScreen\src\components\map.vue
  8. * @Copyright: Copyright (c) 2016~2023 by wangcc, All Rights Reserved.
  9. -->
  10. <template>
  11. <div class="content">
  12. <div id="container"></div>
  13. <div id="mask"></div>
  14. </div>
  15. </template>
  16. <script>
  17. import { rightScrollData } from '@/api/http';
  18. export default {
  19. name: '',
  20. data() {
  21. return {
  22. AMap: null,
  23. map: null,
  24. zoom: 18,
  25. searchFrom:{
  26. isRoad: '1'
  27. }
  28. };
  29. },
  30. created() {
  31. this.getRoadParkList();
  32. },
  33. mounted() {
  34. this.initMap();
  35. },
  36. watch: {
  37. '$store.state.addr.isRoad': {
  38. handler(val) {
  39. console.log(val);
  40. this.searchFrom.isRoad = val
  41. this.getRoadParkList()
  42. }
  43. }
  44. },
  45. methods: {
  46. initMap() {
  47. let _this = this;
  48. var center = new TMap.LatLng(26.646694, 106.628201);
  49. //初始化地图
  50. this.map = new TMap.Map('container', {
  51. zoom: _this.zoom, //设置地图缩放级别
  52. center: center, //设置地图中心点坐标
  53. mapStyleId: 'style1',
  54. viewMode: '2D',
  55. disableDefaultUI: true
  56. });
  57. this.map.removeControl(TMap.constants.DEFAULT_CONTROL_ID.ZOOM);
  58. this.map.removeControl(TMap.constants.DEFAULT_CONTROL_ID.SCALE);
  59. this.map.removeControl(TMap.constants.DEFAULT_CONTROL_ID.ROTATION);
  60. },
  61. async getRoadParkList() {
  62. let { code, rows } = await rightScrollData(this.searchFrom);
  63. console.log(rows);
  64. }
  65. }
  66. };
  67. </script>
  68. <style lang='scss' scoped>
  69. .content {
  70. width: 100%;
  71. height: 100%;
  72. }
  73. #container {
  74. height: 100%;
  75. }
  76. #mask {
  77. width: 100%;
  78. height: 100%;
  79. box-shadow: inset 100px 0px 16vw 12vw rgba(0, 15, 40, 0.84);
  80. position: fixed;
  81. left: 0;
  82. right: 0;
  83. bottom: 0;
  84. top: 0;
  85. pointer-events: none;
  86. }
  87. ::v-deep .amap-logo {
  88. display: none !important; //去掉高德地图logo
  89. }
  90. ::v-deep .amap-copyright {
  91. opacity: 0 !important; //去掉高德的版本号
  92. }
  93. </style>