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