tx-map.component.ts 880 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import { Component, Input, OnInit, Output,EventEmitter } from '@angular/core';
  2. declare var TMap: any;
  3. @Component({
  4. selector: 'app-tx-map',
  5. templateUrl: './tx-map.component.html',
  6. styleUrls: ['./tx-map.component.less'],
  7. })
  8. export class TxMapComponent implements OnInit {
  9. qqMap: any;
  10. // 传入参数
  11. // 地图中心点经纬度
  12. @Input() center = {
  13. Longitude: '',
  14. Latitude: '',
  15. };
  16. // 出发外部事件
  17. @Output() test = new EventEmitter();
  18. constructor() {}
  19. ngOnInit(): void {
  20. // 定义地图中心点坐标
  21. const center: any = new TMap.LatLng(35.103434, 118.356418);
  22. this.qqMap = new TMap.Map(document.getElementById('container'), {
  23. center, // 设置地图中心点坐标
  24. zoom: 12.2, // 设置地图缩放级别
  25. // pitch: 43.5, // 设置俯仰角
  26. // rotation: 45 // 设置地图旋转角度
  27. });
  28. }
  29. }