googleMap.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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. console.log('过来了')
  160. console.log(newValue)
  161. if (newValue.zoom) this.zoom = newValue.zoom || 14
  162. if (newValue.polylines && newValue.polylines.points && newValue.polylines.points.length > 0) this
  163. .polylines = newValue.polylines
  164. if (newValue.markers && newValue.markers.length < 1) return
  165. this.Markers = newValue.markers || []
  166. this.types = newValue.type
  167. if (!this.map) return
  168. this.addMarkers()
  169. },
  170. //点击marker触发
  171. loadMarkertap(marker, item) {
  172. let markerId = marker.data.markerId
  173. if (markerId == 5000) return
  174. if (this.types == 1) this.shopMarkerFn(marker, item)
  175. if (this.types == 2) this.nearCabinetMarkerFn(marker, item)
  176. // if(this.type == 3) this.shopMarkerFn(marker)
  177. this.$ownerInstance.callMethod('onMarkertap', marker.data)
  178. },
  179. //换电柜
  180. nearCabinetMarkerFn(marker, item) {
  181. if (this.selectedMarker) {
  182. this.selectedMarker.setIcon({
  183. url: item.iconPath, // 默认图标路径
  184. size: new google.maps.Size(item.width, item.height),
  185. scaledSize: new google.maps.Size(item.width, item.height)
  186. });
  187. }
  188. marker.setIcon({
  189. url: item.iconPathActive, // 默认图标路径
  190. size: new google.maps.Size(item.width, item.height),
  191. scaledSize: new google.maps.Size(item.width, item.height)
  192. });
  193. this.selectedMarker = marker;
  194. },
  195. //门店Marker逻辑
  196. shopMarkerFn(marker, item) {
  197. if (this.selectedMarker) {
  198. this.selectedMarker.setIcon({
  199. url: item.iconPath, // 默认图标路径
  200. size: new google.maps.Size(item.width, item.height),
  201. scaledSize: new google.maps.Size(item.width, item.height)
  202. });
  203. this.selectedMarker.setOptions({
  204. label: null
  205. });
  206. }
  207. marker.setIcon({
  208. url: item.iconPathActive, // 默认图标路径
  209. size: new google.maps.Size(item.width, item.height),
  210. scaledSize: new google.maps.Size(item.width, item.height)
  211. });
  212. let distance = common.getFlatternDistance(this.myLocations.longitude, this.myLocations
  213. .latitude, item.longitude, item.latitude)
  214. let time = Math.ceil(Number(((distance - 0) / 1000).toFixed(2)) * 25 / 10)
  215. let content = `${common.formatDistance(Number(distance))} 骑行${time}分钟`
  216. marker.setOptions({
  217. label: {
  218. text: content,
  219. className: "map-label",
  220. }
  221. })
  222. this.selectedMarker = marker;
  223. },
  224. //typeFn
  225. typeFn(e, __, ownerInstance) {
  226. console.log('我跑了呀')
  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) {
  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>