Browse Source

优化面包屑导航逻辑,调整地图初始化方式,支持获取当前位置

master
parent
commit
51b32dbe2a
  1. 12
      src/layout/components/Breadcrumb/src/Breadcrumb.vue
  2. 70
      src/views/enterprises/components/getGpsByAmap.vue

12
src/layout/components/Breadcrumb/src/Breadcrumb.vue

@ -78,9 +78,15 @@ export default defineComponent({
) )
return () => ( return () => (
<ElBreadcrumb separator="/" class={`${prefixCls} flex items-center h-full`}> <section>
{renderBreadcrumb()} {currentRoute.value.meta.hidden ? (
</ElBreadcrumb> ''
) : (
<ElBreadcrumb separator="/" class={`${prefixCls} flex items-center h-full`}>
{renderBreadcrumb()}
</ElBreadcrumb>
)}
</section>
) )
} }
}) })

70
src/views/enterprises/components/getGpsByAmap.vue

@ -4,7 +4,7 @@ import position from '@/assets/imgs/position.png'
const show = ref(false) const show = ref(false)
const AMap = (window as any).AMap const AMap = (window as any).AMap
let map: any = null let map: any = null
const center = ref() const center = ref([121.243994, 41.539054])
const loading = ref(false) const loading = ref(false)
let mapSearch: any = null let mapSearch: any = null
const address = ref() const address = ref()
@ -14,38 +14,56 @@ const message = useMessage()
const open = async (param) => { const open = async (param) => {
show.value = true show.value = true
await nextTick(() => { await nextTick(() => {
init(param) init()
}) })
if (param) {
address.value = param.name
addressInfo.value = param
addMarker()
} else {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
(position) => {
console.log(position)
center.value = [position.coords.longitude, position.coords.latitude]
map.setCenter(center.value)
},
(err) => {
console.log(err)
message.warning('获取当前位置失败,请手动选择')
},
{
enableHighAccuracy: true,
maximumAge: 0,
timeout: 300
}
)
} else {
message.warning('获取当前位置失败,请手动选择')
}
}
} }
const emits = defineEmits(['success']) const emits = defineEmits(['success'])
const init = (param) => { const init = () => {
loading.value = true loading.value = true
navigator.geolocation.getCurrentPosition((position) => { map = new AMap.Map('map-container', {
center.value = [position.coords.longitude, position.coords.latitude] center: center.value, //
map = new AMap.Map('map-container', { zoom: 14, //
center: center.value, // viewMode: '2D'
zoom: 14, // })
viewMode: '2D' map.on('complete', () => {
}) const logo = document.getElementsByClassName('amap-logo')[0]
map.on('complete', () => { const copyRight = document.getElementsByClassName('amap-copyright')[0]
const logo = document.getElementsByClassName('amap-logo')[0] logo.setAttribute('style', 'display:none !important')
const copyRight = document.getElementsByClassName('amap-copyright')[0] copyRight.setAttribute('style', 'display:none !important')
logo.setAttribute('style', 'display:none !important') loading.value = false
copyRight.setAttribute('style', 'display:none !important') })
}) AMap.plugin('AMap.Autocomplete', () => {
AMap.plugin('AMap.Autocomplete', () => { mapSearch = new AMap.Autocomplete({
mapSearch = new AMap.Autocomplete({ city: '锦州'
city: '锦州'
})
}) })
if (param) {
address.value = param.name
addressInfo.value = param
addMarker()
}
}) })
loading.value = false
} }
const querySearchAsync = (queryString: string, cb: (arg: any) => void) => { const querySearchAsync = (queryString: string, cb: (arg: any) => void) => {

Loading…
Cancel
Save