googleMap.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. <template>
  2. <view class="content">
  3. <view id="container">
  4. <view :style="{width:width,height:height}" :keyId='keyId' :change:keyId='keyId' :id="`mapModule` + keyId" :prop="mapData" :change:prop="mapModule.update" :lngLat="myLocation" :change:lngLat="mapModule.initAmap"></view>
  5. </view>
  6. </view>
  7. </template>
  8. <script module="mapModule" lang="renderjs">
  9. var common = require("@/common/common.js");
  10. var transform = require('../../common/transform.js');
  11. var meMarker = []
  12. var polylinePath = null
  13. export default {
  14. data() {
  15. return {
  16. zoom:14,
  17. keyId:'',
  18. types:1,
  19. Markers:[],
  20. markersArray: [],
  21. infoWindow: {},
  22. selectedMarker: null,
  23. markerData: {},
  24. markersIcon: '',
  25. markersIconActive: '',
  26. ownerInstance: null,
  27. map: null,
  28. };
  29. },
  30. mounted() {
  31. },
  32. methods: {
  33. initAmap(lngLat, _, ownerInstance) {
  34. lngLat = {
  35. lat: lngLat.latitude,
  36. lng: lngLat.longitude
  37. }
  38. lngLat = transform.wgs_gcj_encrypts(lngLat)
  39. let _this = this
  40. const script = document.createElement('script')
  41. script.src =
  42. 'https://map.gpsall.cc/maps/api/js?key=AIzaSyA70JUgslynjmVv0NPz3hcvkTbPZpr2i_c&callback=initMap&v=weekly&loading=async';
  43. script.async = true; // 异步加载
  44. script.defer = true; // 延迟执行
  45. document.head.appendChild(script)
  46. window.initMap = function() {
  47. _this.loadAmap(lngLat)
  48. };
  49. },
  50. loadPanTo(lngLat, _, ownerInstance) {
  51. lngLat = {
  52. lat: lngLat.latitude,
  53. lng: lngLat.longitude
  54. }
  55. console.log("lngLat", lngLat)
  56. lngLat = transform.wgs_gcj_encrypts(lngLat)
  57. console.log("lngLat", lngLat)
  58. this.map.panTo(new google.maps.LatLng(lngLat.latitude, lngLat.longitude))
  59. },
  60. loadAmap(lngLat) {
  61. let _this = this
  62. var myOptions = {
  63. center: {
  64. lat: parseFloat(lngLat.latitude),
  65. lng: parseFloat(lngLat.longitude)
  66. },
  67. gestureHandling: "greedy", // 强制单指拖动
  68. fullscreenControl: false,
  69. draggable: true, // 显式启用拖拽
  70. zoom: _this.zoom,
  71. panControl: false,
  72. zoomControl: false,
  73. scaleControl: false,
  74. streetViewControl: false,
  75. mapTypeControl: false,
  76. clickableIcons: false,
  77. }
  78. // 存储当前选中的 Marker
  79. _this.selectedMarker = null;
  80. _this.map = new google.maps.Map(document.getElementById("mapModule" + this.keyId), myOptions);
  81. //地图绑定事件
  82. new google.maps.event.addListener(_this.map, "click", function(event) {
  83. _this.$ownerInstance.callMethod('bindTapMap')
  84. });
  85. //如果有Markers则添加
  86. if (_this.Markers.length > 0) {
  87. _this.addMarkers(_this.$ownerInstance)
  88. }
  89. // console.log("render初始化数据")
  90. _this.$ownerInstance.callMethod('loadInitData')
  91. },
  92. //添加标记
  93. addMarkers() {
  94. if (this.markersArray.length > 0) this.clearMarkers() //添加前先删除所有标记
  95. this.Markers.map((item, index) => {
  96. this.AddMarker(item)
  97. })
  98. },
  99. AddMarker(item) {
  100. let label = null
  101. if(this.types == 2 && item.id != 50000){
  102. label = {
  103. text: item.content,
  104. className: "map-label-num",
  105. }
  106. }
  107. let _this = this
  108. const marker = new google.maps.Marker({
  109. id: item.id,
  110. map: _this.map,
  111. data: item,
  112. label,
  113. position: new google.maps.LatLng(parseFloat(item.latitude), parseFloat(item.longitude)),
  114. icon: {
  115. url: item.iconPath, // 默认图标路径
  116. size: new google.maps.Size(item.width, item.height),
  117. scaledSize: new google.maps.Size(item.width, item.height)
  118. },
  119. zIndex: 20
  120. });
  121. marker.addListener('click', function(event) {
  122. _this.loadMarkertap(marker, item)
  123. })
  124. this.markersArray.push(marker)
  125. },
  126. //删除所有标记
  127. clearMarkers() {
  128. this.selectedMarker = null
  129. this.defaultIcon = {}
  130. this.selectedIcon = {}
  131. this.markersArray.forEach(marker => {
  132. marker.setMap(null)
  133. });
  134. this.markersArray = [];
  135. },
  136. update(newValue, _, ownerInstance) {
  137. if(newValue.zoom) this.zoom = newValue.zoom || 14
  138. if (newValue.markers && newValue.markers.length < 1) return
  139. this.Markers = newValue.markers || []
  140. this.types = newValue.type
  141. if (!this.map) return
  142. this.addMarkers()
  143. },
  144. //点击marker触发
  145. loadMarkertap(marker, item) {
  146. let markerId = marker.data.markerId
  147. if (markerId == 5000) return
  148. if (this.types == 1) this.shopMarkerFn(marker, item)
  149. if (this.types == 2) this.nearCabinetMarkerFn(marker, item)
  150. // if(this.type == 3) this.shopMarkerFn(marker)
  151. this.$ownerInstance.callMethod('onMarkertap', marker.data)
  152. },
  153. //换电柜
  154. nearCabinetMarkerFn(marker, item) {
  155. if (this.selectedMarker) {
  156. this.selectedMarker.setIcon({
  157. url: item.iconPath, // 默认图标路径
  158. size: new google.maps.Size(item.width, item.height),
  159. scaledSize: new google.maps.Size(item.width, item.height)
  160. });
  161. }
  162. marker.setIcon({
  163. url: item.iconPathActive, // 默认图标路径
  164. size: new google.maps.Size(item.width, item.height),
  165. scaledSize: new google.maps.Size(item.width, item.height)
  166. });
  167. this.selectedMarker = marker;
  168. },
  169. //门店Marker逻辑
  170. shopMarkerFn(marker, item) {
  171. if (this.selectedMarker) {
  172. this.selectedMarker.setIcon({
  173. url: item.iconPath, // 默认图标路径
  174. size: new google.maps.Size(item.width, item.height),
  175. scaledSize: new google.maps.Size(item.width, item.height)
  176. });
  177. this.selectedMarker.setOptions({
  178. label: null
  179. });
  180. }
  181. marker.setIcon({
  182. url: item.iconPathActive, // 默认图标路径
  183. size: new google.maps.Size(item.width, item.height),
  184. scaledSize: new google.maps.Size(item.width, item.height)
  185. });
  186. let distance = common.getFlatternDistance(this.myLocation.longitude, this.myLocation
  187. .latitude, item.longitude, item.latitude)
  188. let time = Math.ceil(Number(((distance - 0) / 1000).toFixed(2)) * 25 / 10)
  189. let content = `${common.formatDistance(Number(distance))} 骑行${time}分钟`
  190. marker.setOptions({
  191. label: {
  192. text: content,
  193. className: "map-label",
  194. }
  195. })
  196. this.selectedMarker = marker;
  197. },
  198. //typeFn
  199. typeFn(e, __, ownerInstance) {
  200. console.log('我跑了呀')
  201. this.types = e[0]
  202. },
  203. }
  204. }
  205. </script>
  206. <script>
  207. export default {
  208. props: {
  209. keyId:{
  210. type: String,
  211. default: '0'
  212. },
  213. id:{
  214. type: String,
  215. default: 'mapModule'
  216. },
  217. width: {
  218. type: String,
  219. default: '100%'
  220. },
  221. height: {
  222. type: String,
  223. default: '100%'
  224. },
  225. /**
  226. * @param type 1 //1门店 2 换电柜 3其他
  227. * @param Markers //Markers数据
  228. * @param * 后续数据随便添加
  229. **/
  230. mapData: {
  231. type: Object,
  232. required: true //必填项
  233. },
  234. myLocation: {
  235. type: Object,
  236. required: true //必填项
  237. },
  238. },
  239. data() {
  240. return {
  241. };
  242. },
  243. mounted() {},
  244. methods: {
  245. onMarkertap(marker) {
  246. this.$emit('changMarkertap', marker)
  247. },
  248. bindTapMap() {
  249. console.log('点击事件!')
  250. },
  251. loadInitData() {
  252. console.log('初始化成功!')
  253. },
  254. }
  255. }
  256. </script>
  257. <style scoped>
  258. #container {
  259. width: 100%;
  260. height: 100%;
  261. }
  262. </style>