builder.ets 196 B

123456789
  1. import { MapComponent } from '@tencentmap/map'
  2. @Builder
  3. export function buildTencentMap(params: ESObject) {
  4. MapComponent({
  5. mapOptions: params.mapOptions,
  6. onReady: params.onReady
  7. })
  8. }