googleMap.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  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. if (newValue.zoom) this.zoom = newValue.zoom || 14
  163. if (newValue.polylines && newValue.polylines.points && newValue.polylines.points.length > 0) this
  164. .polylines = newValue.polylines
  165. if (newValue.markers && newValue.markers.length < 1) return
  166. this.Markers = newValue.markers || []
  167. this.types = newValue.type
  168. if (!this.map) return
  169. this.addMarkers()
  170. },
  171. //点击marker触发
  172. loadMarkertap(marker, item) {
  173. let markerId = marker.data.id
  174. if (markerId == 50000) return
  175. if (this.types == 1 || this.types == 2) this.shopMarkerFn(marker, item)
  176. // if (this.types == 2) this.nearCabinetMarkerFn(marker, item)
  177. // if(this.type == 3) this.shopMarkerFn(marker)
  178. this.$ownerInstance.callMethod('onMarkertap', marker.data)
  179. },
  180. //换电柜
  181. nearCabinetMarkerFn(marker, item) {
  182. if (this.selectedMarker) {
  183. this.selectedMarker.setIcon({
  184. url: item.iconPath, // 默认图标路径
  185. size: new google.maps.Size(item.width, item.height),
  186. scaledSize: new google.maps.Size(item.width, item.height)
  187. });
  188. }
  189. marker.setIcon({
  190. url: item.iconPathActive, // 默认图标路径
  191. size: new google.maps.Size(item.width, item.height),
  192. scaledSize: new google.maps.Size(item.width, item.height)
  193. });
  194. this.selectedMarker = marker;
  195. },
  196. //门店Marker逻辑
  197. shopMarkerFn(marker, item) {
  198. if (this.selectedMarker) {
  199. this.selectedMarker.setIcon({
  200. url: item.iconPath, // 默认图标路径
  201. size: new google.maps.Size(item.width, item.height),
  202. scaledSize: new google.maps.Size(item.width, item.height)
  203. });
  204. this.selectedMarker.setOptions({
  205. label: null
  206. });
  207. }
  208. marker.setIcon({
  209. url: item.iconPathActive, // 默认图标路径
  210. size: new google.maps.Size(item.width, item.height),
  211. scaledSize: new google.maps.Size(item.width, item.height)
  212. });
  213. let distance = common.getFlatternDistance(this.myLocations.longitude, this.myLocations
  214. .latitude, item.longitude, item.latitude)
  215. let time = Math.ceil(Number(((distance - 0) / 1000).toFixed(2)) * 25 / 10)
  216. let content = `${common.formatDistance(Number(distance))} 骑行${time}分钟`
  217. marker.setOptions({
  218. label: {
  219. text: content,
  220. className: "map-label",
  221. }
  222. })
  223. this.selectedMarker = marker;
  224. },
  225. //typeFn
  226. typeFn(e, __, ownerInstance) {
  227. this.types = e[0]
  228. },
  229. }
  230. }
  231. </script>
  232. <script>
  233. export default {
  234. props: {
  235. keyId: {
  236. type: String,
  237. default: '0'
  238. },
  239. id: {
  240. type: String,
  241. default: 'mapModule'
  242. },
  243. width: {
  244. type: String,
  245. default: '100%'
  246. },
  247. height: {
  248. type: String,
  249. default: '100%'
  250. },
  251. /**
  252. * @param type 1 //1门店 2 换电柜 3其他
  253. * @param Markers //Markers数据
  254. * @param * 后续数据随便添加
  255. **/
  256. mapData: {
  257. type: Object,
  258. required: true //必填项
  259. },
  260. myLocations: {
  261. type: Object,
  262. required: true //必填项
  263. },
  264. },
  265. data() {
  266. return {
  267. };
  268. },
  269. mounted() {
  270. },
  271. methods: {
  272. onMarkertap(marker,type) {
  273. this.$emit('changMarkertap', marker)
  274. },
  275. bindTapMap() {
  276. console.log('点击事件!')
  277. },
  278. loadInitData() {
  279. console.log('初始化成功!')
  280. },
  281. }
  282. }
  283. </script>
  284. <style scoped>
  285. #container {
  286. width: 100%;
  287. height: 100%;
  288. }
  289. </style>