googleMap.vue 8.1 KB

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