googleMap.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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=AIzaSyA70JUgslynjmVv0NPz3hcvkTbPZpr2i_c&callback=initMap&v=weekly&loading=async';
  45. script.async = true; // 异步加载
  46. script.defer = true; // 延迟执行
  47. document.head.appendChild(script)
  48. window.initMap = function() {
  49. _this.loadAmap(lngLat)
  50. };
  51. },
  52. loadPanTo(lngLat, _, ownerInstance) {
  53. lngLat = {
  54. lat: lngLat.latitude,
  55. lng: lngLat.longitude
  56. }
  57. lngLat = transform.wgs_gcj_encrypts(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. //如果有polylines则添加
  86. if (_this.polylines?.points?.length > 0) {
  87. console.log('添加轨迹')
  88. console.log(_this.polylines.points)
  89. let path = _this.polylines.points.map(item => {
  90. return {
  91. lng: item.lng,
  92. lat: item.lat
  93. }
  94. })
  95. _this.trackPolyline = new google.maps.Polyline({
  96. path: path,
  97. // geodesic: true, // 沿地球曲率连线
  98. strokeColor: _this.polylines.color, // 轨迹线颜色
  99. strokeOpacity: 1.0, // 透明度
  100. strokeWeight: 3 // 线宽
  101. });
  102. // 更新轨迹线的路径
  103. _this.trackPolyline.setMap(_this.map);
  104. // 可选:自动移动地图中心到最新位置
  105. _this.map.panTo(path[path.length - 1]);
  106. }
  107. //如果有Markers则添加
  108. if (_this.Markers.length > 0) {
  109. _this.addMarkers(_this.$ownerInstance)
  110. }
  111. // console.log("render初始化数据")
  112. _this.$ownerInstance.callMethod('loadInitData')
  113. },
  114. //添加标记
  115. addMarkers() {
  116. if (this.markersArray.length > 0) this.clearMarkers() //添加前先删除所有标记
  117. this.Markers.map((item, index) => {
  118. this.AddMarker(item)
  119. })
  120. },
  121. AddMarker(item) {
  122. let label = null
  123. if (this.types == 2 && item.id != 50000) {
  124. label = {
  125. text: item.content,
  126. className: "map-label-num",
  127. }
  128. }
  129. let _this = this
  130. const marker = new google.maps.Marker({
  131. id: item.id,
  132. map: _this.map,
  133. data: item,
  134. label,
  135. position: new google.maps.LatLng(parseFloat(item.latitude), parseFloat(item.longitude)),
  136. icon: {
  137. url: item.iconPath, // 默认图标路径
  138. size: new google.maps.Size(item.width, item.height),
  139. scaledSize: new google.maps.Size(item.width, item.height)
  140. },
  141. zIndex: 20
  142. });
  143. marker.addListener('click', function(event) {
  144. _this.loadMarkertap(marker, item)
  145. })
  146. this.markersArray.push(marker)
  147. },
  148. //删除所有标记
  149. clearMarkers() {
  150. this.selectedMarker = null
  151. this.defaultIcon = {}
  152. this.selectedIcon = {}
  153. this.markersArray.forEach(marker => {
  154. marker.setMap(null)
  155. });
  156. this.markersArray = [];
  157. },
  158. update(newValue, _, ownerInstance) {
  159. if (newValue.zoom) this.zoom = newValue.zoom || 14
  160. if (newValue.polylines && newValue.polylines.points && newValue.polylines.points.length > 0) this
  161. .polylines = newValue.polylines
  162. if (newValue.markers && newValue.markers.length < 1) return
  163. this.Markers = newValue.markers || []
  164. this.types = newValue.type
  165. if (!this.map) return
  166. this.addMarkers()
  167. },
  168. //点击marker触发
  169. loadMarkertap(marker, item) {
  170. let markerId = marker.data.markerId
  171. if (markerId == 5000) return
  172. if (this.types == 1) this.shopMarkerFn(marker, item)
  173. if (this.types == 2) this.nearCabinetMarkerFn(marker, item)
  174. // if(this.type == 3) this.shopMarkerFn(marker)
  175. this.$ownerInstance.callMethod('onMarkertap', marker.data)
  176. },
  177. //换电柜
  178. nearCabinetMarkerFn(marker, item) {
  179. if (this.selectedMarker) {
  180. this.selectedMarker.setIcon({
  181. url: item.iconPath, // 默认图标路径
  182. size: new google.maps.Size(item.width, item.height),
  183. scaledSize: new google.maps.Size(item.width, item.height)
  184. });
  185. }
  186. marker.setIcon({
  187. url: item.iconPathActive, // 默认图标路径
  188. size: new google.maps.Size(item.width, item.height),
  189. scaledSize: new google.maps.Size(item.width, item.height)
  190. });
  191. this.selectedMarker = marker;
  192. },
  193. //门店Marker逻辑
  194. shopMarkerFn(marker, item) {
  195. if (this.selectedMarker) {
  196. this.selectedMarker.setIcon({
  197. url: item.iconPath, // 默认图标路径
  198. size: new google.maps.Size(item.width, item.height),
  199. scaledSize: new google.maps.Size(item.width, item.height)
  200. });
  201. this.selectedMarker.setOptions({
  202. label: null
  203. });
  204. }
  205. marker.setIcon({
  206. url: item.iconPathActive, // 默认图标路径
  207. size: new google.maps.Size(item.width, item.height),
  208. scaledSize: new google.maps.Size(item.width, item.height)
  209. });
  210. let distance = common.getFlatternDistance(this.myLocations.longitude, this.myLocations
  211. .latitude, item.longitude, item.latitude)
  212. let time = Math.ceil(Number(((distance - 0) / 1000).toFixed(2)) * 25 / 10)
  213. let content = `${common.formatDistance(Number(distance))} 骑行${time}分钟`
  214. marker.setOptions({
  215. label: {
  216. text: content,
  217. className: "map-label",
  218. }
  219. })
  220. this.selectedMarker = marker;
  221. },
  222. //typeFn
  223. typeFn(e, __, ownerInstance) {
  224. console.log('我跑了呀')
  225. this.types = e[0]
  226. },
  227. }
  228. }
  229. </script>
  230. <script>
  231. export default {
  232. props: {
  233. keyId: {
  234. type: String,
  235. default: '0'
  236. },
  237. id: {
  238. type: String,
  239. default: 'mapModule'
  240. },
  241. width: {
  242. type: String,
  243. default: '100%'
  244. },
  245. height: {
  246. type: String,
  247. default: '100%'
  248. },
  249. /**
  250. * @param type 1 //1门店 2 换电柜 3其他
  251. * @param Markers //Markers数据
  252. * @param * 后续数据随便添加
  253. **/
  254. mapData: {
  255. type: Object,
  256. required: true //必填项
  257. },
  258. myLocations: {
  259. type: Object,
  260. required: true //必填项
  261. },
  262. },
  263. data() {
  264. return {
  265. };
  266. },
  267. mounted() {
  268. },
  269. methods: {
  270. onMarkertap(marker) {
  271. this.$emit('changMarkertap', marker)
  272. },
  273. bindTapMap() {
  274. console.log('点击事件!')
  275. },
  276. loadInitData() {
  277. console.log('初始化成功!')
  278. },
  279. }
  280. }
  281. </script>
  282. <style scoped>
  283. #container {
  284. width: 100%;
  285. height: 100%;
  286. }
  287. </style>