googleMap.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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(_this.polylines.points)
  92. let path = _this.polylines.points.map(item => {
  93. return {
  94. lng: item.lng,
  95. lat: item.lat
  96. }
  97. })
  98. _this.trackPolyline = new google.maps.Polyline({
  99. path: path,
  100. // geodesic: true, // 沿地球曲率连线
  101. strokeColor: _this.polylines.color, // 轨迹线颜色
  102. strokeOpacity: 1.0, // 透明度
  103. strokeWeight: 3 // 线宽
  104. });
  105. // 更新轨迹线的路径
  106. _this.trackPolyline.setMap(_this.map);
  107. // 可选:自动移动地图中心到最新位置
  108. _this.map.panTo(path[path.length - 1]);
  109. }
  110. //如果有Markers则添加
  111. if (_this.Markers.length > 0) {
  112. _this.addMarkers(_this.$ownerInstance)
  113. }
  114. // console.log("render初始化数据")
  115. _this.$ownerInstance.callMethod('loadInitData')
  116. },
  117. //添加标记
  118. addMarkers() {
  119. if (this.markersArray.length > 0) this.clearMarkers() //添加前先删除所有标记
  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.markerId
  174. if (markerId == 5000) return
  175. if (this.types == 1) 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.myLocation.longitude, this.myLocation
  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. myLocation: {
  261. type: Object,
  262. required: true //必填项
  263. },
  264. },
  265. data() {
  266. return {
  267. };
  268. },
  269. mounted() {},
  270. methods: {
  271. onMarkertap(marker) {
  272. this.$emit('changMarkertap', marker)
  273. },
  274. bindTapMap() {
  275. console.log('点击事件!')
  276. },
  277. loadInitData() {
  278. console.log('初始化成功!')
  279. },
  280. }
  281. }
  282. </script>
  283. <style scoped>
  284. #container {
  285. width: 100%;
  286. height: 100%;
  287. }
  288. </style>