提供一个关于地图组件使用的小demo

要实现的效果也很简单:就是跳转到一个专门的页面,页面里只有一个地图组件,然后地图上显示当前地理位置。

HarmonyOS
2024-08-04 14:52:12
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
coolhead2000

可以先获取当前位置,在传入地图组件,使用地图组件需在module.json5中开启权限:

"requestPermissions": [ 
{ 
  "name": "ohos.permission.LOCATION", 
"reason": "$string:EntryAbility_desc", 
"usedScene": { 
  "abilities": [ 
  "EntryAbility" 
  ], 
  "when": "always" 
} 
}, 
{ 
  "name": "ohos.permission.APPROXIMATELY_LOCATION", 
"reason": "$string:EntryAbility_desc", 
"usedScene": { 
  "abilities": [ 
  "EntryAbility" 
  ], 
  "when": "always" 
} 
} 
]

当前位置文档链接:https://developer.huawei.com/consumer/cn/doc/harmonyos-references/js-apis-geolocationmanager-0000001774281602#ZH-CN_TOPIC_0000001811156846__location

地图组件文档链接:https://developer.huawei.com/consumer/cn/doc/harmonyos-references/hms-core-map-mapcomponent-0000001697748289

以下为参考样例:

import { map, mapCommon, MapComponent } from '@kit.MapKit'; 
import { AsyncCallback } from '@kit.BasicServicesKit'; 
import { geoLocationManager } from '@kit.LocationKit'; 
import { router } from '@kit.ArkUI'; 
 
@Entry 
@Component 
struct MapSignIn { 
  private mapOption?: mapCommon.MapOptions; 
  private callback?: AsyncCallback<map.MapComponentController>; 
  private mapController?: map.MapComponentController; 
 
  aboutToAppear(): void { 
    // 地图初始化的回调 
    this.callback = async (err, mapController) => { 
      if (!err) { 
        // 获取地图的控制器类,用来操作地图 
        this.mapController = mapController; 
        // 启用我的位置图层 
        this.mapController?.setMyLocationEnabled(true); 
        this.mapController.on("mapLoad", () => { 
          console.info('MapCreatePage', `on-mapLoad`); 
        }); 
 
        // 监听“我的位置”按钮点击事件 
        this.mapController.on("myLocationButtonClick", () => { 
          console.info("myLocationButtonClick", `myLocationButtonClick`); 
          this.getMyLocation() 
        }); 
 
        // 初始化我的位置 
        this.getMyLocation() 
      } 
    }; 
  } 
 
  build() { 
    Column() { 
      Row() { 
        Image($r('app.media.ic_public_arrow_left')).width(28) 
          .onClick(() => { 
            router.back() 
          }) 
        Text('当前位置') 
      } 
      .height('6%') 
      .width('100%') 
      .padding({ left: 15 }) 
 
      MapComponent({ mapOptions: this.mapOption, mapCallback: this.callback }).width('100%').height('94%'); 
    } 
  } 
  // 获取当前位置并视图移动过去 
  getMyLocation() { 
    geoLocationManager.getCurrentLocation().then(async (result) => { 
      console.log('MapSignIn', 'getMyLocation = ' + JSON.stringify(result)) 
      let position: geoLocationManager.Location = { 
        "latitude": result.latitude, 
        "longitude": result.longitude, 
        "altitude": 0, 
        "accuracy": 0, 
        "speed": 0, 
        "timeStamp": 0, 
        "direction": 0, 
        "timeSinceBoot": 0 
      }; 
 
      this.mapController?.setMyLocation(position); 
      // 创建CameraUpdate对象 
      let gcj02Posion: mapCommon.LatLng = await this.convertCoordinate(result.latitude,result.longitude) 
      let latLng: mapCommon.LatLng = { 
        latitude: gcj02Posion.latitude, 
        longitude: gcj02Posion.longitude 
      }; 
      let zoom = 17; 
      let cameraUpdate = map.newLatLng(latLng, zoom); 
      // 以动画方式移动地图相机 
      this.mapController?.animateCamera(cameraUpdate, 1000); 
    }) 
  } 
  async convertCoordinate(latitude: number, longitude: number): Promise<mapCommon.LatLng> { 
    let wgs84Position: mapCommon.LatLng = { 
      latitude: latitude, 
      longitude: longitude 
    }; 
    let gcj02Posion: mapCommon.LatLng = await map.convertCoordinate(mapCommon.CoordinateType.WGS84, mapCommon.CoordinateType.GCJ02, wgs84Position); 
    return gcj02Posion; 
  } 
}
分享
微博
QQ
微信
回复
2024-08-05 12:19:40
相关问题
能否提供一个关于SM3加密demo
506浏览 • 1回复 待解决
HarmonyOS能否提供一个NFC识别的demo
219浏览 • 1回复 待解决
需要一个NFC读取demo
268浏览 • 1回复 待解决
求告知如何创建一个地图
247浏览 • 1回复 待解决
求助一个关于TextTimer问题 ?
516浏览 • 1回复 待解决
HarmonyOS 需要一个筛选页面的demo
199浏览 • 1回复 待解决
HarmonyOS 请提供路由跳转Demo
273浏览 • 1回复 待解决
问大家一个问题,关于原服务
6875浏览 • 1回复 待解决
关于索引一个问题有懂吗?
2540浏览 • 1回复 待解决
能否提供一个SM3加密案例
477浏览 • 1回复 待解决