map.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <template>
  2. <view class="content">
  3. <!-- <view class="box">
  4. <map style="width: 100%; height: 100vh;"
  5. scale="14" show-location="true"
  6. :latitude="latitude" :longitude="longitude" :markers="covers">
  7. </map>
  8. </view> -->
  9. <view id="firstScreenPage">
  10. <view class="loader-inner ball-beat">
  11. <view></view> <view></view> <view></view>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. covers: [{
  21. latitude:'',
  22. longitude: '',
  23. title:'',
  24. }],
  25. longitude:'',
  26. latitude:'',
  27. }
  28. },
  29. onLoad(opt) {
  30. //uni.showLoading({ title: '加载中'});
  31. var that=this;
  32. this.latitude=opt.lat
  33. this.longitude=opt.lng
  34. this.covers[0].latitude=opt.lat
  35. this.covers[0].longitude=opt.lng
  36. this.covers[0].title=opt.content
  37. console.log(this.covers[0])
  38. uni.openLocation({
  39. latitude:Number( this.latitude),
  40. longitude: Number(this.longitude),
  41. name: this.covers[0].title,
  42. //address: that.shopdata.address,
  43. success: function() {
  44. console.log('success');
  45. },
  46. fail(err) {
  47. console.log(err)
  48. },
  49. complete(){
  50. uni.navigateBack({
  51. delta:1
  52. })
  53. }
  54. });
  55. },
  56. methods: {
  57. }
  58. }
  59. </script>
  60. <style>
  61. .content {
  62. /* display: flex;
  63. flex-direction: column;
  64. align-items: center;
  65. justify-content: center; */
  66. }
  67. .box{
  68. }
  69. #firstScreenPage { top:50%; left:50%; position: absolute; -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); z-index:100; }
  70. @-webkit-keyframes ball-beat { 50% { opacity: 0.2; -webkit-transform: scale(0.75); transform: scale(0.75); } 100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } }
  71. @keyframes ball-beat { 50% { opacity: 0.2; -webkit-transform: scale(0.75); transform: scale(0.75); } 100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } }
  72. .ball-beat > view { background-color: #279fcf; width: 15px; height: 15px; border-radius: 100% !important; margin: 2px; -webkit-animation-fill-mode: both; animation-fill-mode: both; display: inline-block; -webkit-animation: ball-beat 0.7s 0s infinite linear; animation: ball-beat 0.7s 0s infinite linear; }
  73. .ball-beat > view:nth-child(2n-1) { -webkit-animation-delay: 0.35s !important; animation-delay: 0.35s !important; }
  74. </style>