联系我们页
代码
map文档:map | uni-app官网 (dcloud.net.cn)
<template>
<view class="contact">
<image class="img" src="http://www.itcast.cn/2018czydz/images/gywmban.jpg"></image>
<view class="info">
<view @click="phone">联系电话:400-618-9090 ( 点击拨打 )</view>
<view>校区地址:浙江省杭州市下沙经济开发区4号大街187号盛泰时代山</view>
</view>
<map class="map" :longitude="longitude" :scale="scale" :latitude="latitude" :markers="markers"></map>
<!-- 地图控件
longitude :中心经度
latitude:中心纬度
scale:缩放级别,取值范围为3-20
-->
</view>
</template>
<script>
export default {
data() {
return {
longitude: 120.363172,//中心经度
latitude: 30.312212,//中心维度
scale: 13,//缩放级别
markers: [{// 标记点
longitude: 120.363172, //标记经度
latitude: 30.312212,//标记维度
iconPath: '../../static/hmlogo.png',//标记图标
width: 30,//图标宽度
height: 30//图标高度
}]
}
},
methods: {
phone() {
uni.makePhoneCall({//拨打电话内置方法
phoneNumber: '400-618-9090'
})
}
}
}
</script>
<style lang="scss">
.contact {
.img {
width: 750rpx;
height: 320rpx;
}
.info {
padding: 10rpx 20rpx;
font-size: 30rpx;
view {
line-height: 80rpx;
border-bottom: 1px solid #eee;
}
}
.map {
width: 750rpx;
height: 750rpx;
}
}
</style>