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" :prop="mapData" :change:prop="mapModule.update" :lngLat="myLocation" :change:lngLat="mapModule.initAmap"></view>
  5. </view>
  6. </view>
  7. </template>
  8. <script module="mapModule" lang="renderjs">
  9. var common = require("@/common/common.js");
  10. var transform = require('../../common/transform.js');
  11. var meMarker = []
  12. var polylinePath = null
  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. console.log("lngLat", lngLat)
  58. lngLat = transform.wgs_gcj_encrypts(lngLat)
  59. console.log("lngLat", lngLat)
  60. this.map.panTo(new google.maps.LatLng(lngLat.latitude, lngLat.longitude))
  61. },
  62. loadAmap(lngLat) {
  63. let _this = this
  64. var myOptions = {
  65. center: {
  66. lat: parseFloat(lngLat.latitude),
  67. lng: parseFloat(lngLat.longitude)
  68. },
  69. gestureHandling: "greedy", // 强制单指拖动
  70. fullscreenControl: false,
  71. draggable: true, // 显式启用拖拽
  72. zoom: _this.zoom,
  73. panControl: false,
  74. zoomControl: false,
  75. scaleControl: false,
  76. streetViewControl: false,
  77. mapTypeControl: false,
  78. clickableIcons: false,
  79. }
  80. // 存储当前选中的 Marker
  81. _this.selectedMarker = null;
  82. _this.map = new google.maps.Map(document.getElementById("mapModule" + this.keyId), myOptions);
  83. //地图绑定事件
  84. new google.maps.event.addListener(_this.map, "click", function(event) {
  85. _this.$ownerInstance.callMethod('bindTapMap')
  86. });
  87. //如果有polylines则添加
  88. if(_this.polylines.points.length > 0){
  89. console.log('添加轨迹')
  90. console.log(_this.polylines.points)
  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. this.Markers.map((item, index) => {
  120. this.AddMarker(item)
  121. })
  122. },
  123. AddMarker(item) {
  124. let label = null
  125. if(this.types == 2 && item.id != 50000){
  126. label = {
  127. text: item.content,
  128. className: "map-label-num",
  129. }
  130. }
  131. let _this = this
  132. const marker = new google.maps.Marker({
  133. id: item.id,
  134. map: _this.map,
  135. data: item,
  136. label,
  137. position: new google.maps.LatLng(parseFloat(item.latitude), parseFloat(item.longitude)),
  138. icon: {
  139. url: item.iconPath, // 默认图标路径
  140. size: new google.maps.Size(item.width, item.height),
  141. scaledSize: new google.maps.Size(item.width, item.height)
  142. },
  143. zIndex: 20
  144. });
  145. marker.addListener('click', function(event) {
  146. _this.loadMarkertap(marker, item)
  147. })
  148. this.markersArray.push(marker)
  149. },
  150. //删除所有标记
  151. clearMarkers() {
  152. this.selectedMarker = null
  153. this.defaultIcon = {}
  154. this.selectedIcon = {}
  155. this.markersArray.forEach(marker => {
  156. marker.setMap(null)
  157. });
  158. this.markersArray = [];
  159. },
  160. update(newValue, _, ownerInstance) {
  161. if(newValue.zoom) this.zoom = newValue.zoom || 14
  162. if(newValue.polylines.points.length > 0) this.polylines = newValue.polylines
  163. if (newValue.markers && newValue.markers.length < 1) return
  164. this.Markers = newValue.markers || []
  165. this.types = newValue.type
  166. if (!this.map) return
  167. this.addMarkers()
  168. },
  169. //点击marker触发
  170. loadMarkertap(marker, item) {
  171. let markerId = marker.data.markerId
  172. if (markerId == 5000) return
  173. if (this.types == 1) this.shopMarkerFn(marker, item)
  174. if (this.types == 2) this.nearCabinetMarkerFn(marker, item)
  175. // if(this.type == 3) this.shopMarkerFn(marker)
  176. this.$ownerInstance.callMethod('onMarkertap', marker.data)
  177. },
  178. //换电柜
  179. nearCabinetMarkerFn(marker, item) {
  180. if (this.selectedMarker) {
  181. this.selectedMarker.setIcon({
  182. url: item.iconPath, // 默认图标路径
  183. size: new google.maps.Size(item.width, item.height),
  184. scaledSize: new google.maps.Size(item.width, item.height)
  185. });
  186. }
  187. marker.setIcon({
  188. url: item.iconPathActive, // 默认图标路径
  189. size: new google.maps.Size(item.width, item.height),
  190. scaledSize: new google.maps.Size(item.width, item.height)
  191. });
  192. this.selectedMarker = marker;
  193. },
  194. //门店Marker逻辑
  195. shopMarkerFn(marker, item) {
  196. if (this.selectedMarker) {
  197. this.selectedMarker.setIcon({
  198. url: item.iconPath, // 默认图标路径
  199. size: new google.maps.Size(item.width, item.height),
  200. scaledSize: new google.maps.Size(item.width, item.height)
  201. });
  202. this.selectedMarker.setOptions({
  203. label: null
  204. });
  205. }
  206. marker.setIcon({
  207. url: item.iconPathActive, // 默认图标路径
  208. size: new google.maps.Size(item.width, item.height),
  209. scaledSize: new google.maps.Size(item.width, item.height)
  210. });
  211. let distance = common.getFlatternDistance(this.myLocation.longitude, this.myLocation
  212. .latitude, item.longitude, item.latitude)
  213. let time = Math.ceil(Number(((distance - 0) / 1000).toFixed(2)) * 25 / 10)
  214. let content = `${common.formatDistance(Number(distance))} 骑行${time}分钟`
  215. marker.setOptions({
  216. label: {
  217. text: content,
  218. className: "map-label",
  219. }
  220. })
  221. this.selectedMarker = marker;
  222. },
  223. //typeFn
  224. typeFn(e, __, ownerInstance) {
  225. console.log('我跑了呀')
  226. this.types = e[0]
  227. },
  228. }
  229. }
  230. </script>
  231. <script>
  232. export default {
  233. props: {
  234. keyId:{
  235. type: String,
  236. default: '0'
  237. },
  238. id:{
  239. type: String,
  240. default: 'mapModule'
  241. },
  242. width: {
  243. type: String,
  244. default: '100%'
  245. },
  246. height: {
  247. type: String,
  248. default: '100%'
  249. },
  250. /**
  251. * @param type 1 //1门店 2 换电柜 3其他
  252. * @param Markers //Markers数据
  253. * @param * 后续数据随便添加
  254. **/
  255. mapData: {
  256. type: Object,
  257. required: true //必填项
  258. },
  259. myLocation: {
  260. type: Object,
  261. required: true //必填项
  262. },
  263. },
  264. data() {
  265. return {
  266. };
  267. },
  268. mounted() {},
  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>