mapControl.vue 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <!-- component/mapControl/mapControl.wxml -->
  3. <view class="map-control-pannel">
  4. <view class="map-control-group">
  5. <view class="map-c-lukuang">
  6. <image class="map-c-icon" :src="'/static/resource/images/' + (mapParamsClone.enableTraffic ? 'road-2' : 'road-1') + '.png'" @tap="mapTrafficSwitch"></image>
  7. </view>
  8. <view class="map-c-item map-c-weixing">
  9. <image class="map-c-icon" :src="'/static/resource/images/' + (mapParamsClone.enableSatellite ? 'wx-2' : 'wx-1') + '.png'" @tap="mapSatelliteSwitch"></image>
  10. </view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. // component/mapControl/mapControl.js
  16. export default {
  17. data() {
  18. return {
  19. mapParamsClone: {
  20. enableTraffic: false,
  21. enableSatellite: false
  22. }
  23. };
  24. },
  25. /**
  26. * 组件的属性列表
  27. */
  28. props: {
  29. mapParams: {
  30. type: Object
  31. }
  32. },
  33. /**
  34. * 组件的方法列表
  35. */
  36. methods: {
  37. changeParams: function () {
  38. this.$emit('changeParams', {
  39. detail: {
  40. mapParams: this.mapParams
  41. }
  42. });
  43. },
  44. mapTrafficSwitch: function () {
  45. const mapParams = this.mapParams;
  46. mapParams.enableTraffic = !mapParams.enableTraffic;
  47. this.setData({
  48. mapParamsClone: mapParams
  49. });
  50. this.changeParams();
  51. },
  52. mapSatelliteSwitch: function () {
  53. const mapParams = this.mapParams;
  54. mapParams.enableSatellite = !mapParams.enableSatellite;
  55. this.setData({
  56. mapParamsClone: mapParams
  57. });
  58. this.changeParams();
  59. }
  60. },
  61. created: function () {},
  62. watch: {
  63. mapParams: {
  64. handler: function (newVal, oldVal) {
  65. this.mapParamsClone = newVal;
  66. },
  67. immediate: true,
  68. deep: true
  69. }
  70. }
  71. };
  72. </script>
  73. <style>
  74. @import './mapControl.css';
  75. </style>