使用纬度/经度的地图



以下是有关使用纬度/经度的地图示例。

我们已经在 Google Charts 配置语法 章节中了解了用于绘制图表所用的配置。现让我们来看一个有关使用纬度/经度的地图的示例。

示例

app.component.ts

import { Component } from '@angular/core';
@Component({
   selector: 'app-root',
   templateUrl: './app.component.html',
   styleUrls: ['./app.component.css']
})
export class AppComponent {
   title = '';
   type = 'Map';
   data = [
      [37.4232, -122.0853, "Work"],
      [37.4289, -122.1697, "University"],
      [37.6153, -122.3900, "Airport"],
      [37.4422, -122.1731, "Shopping"]
   ];
   columnNames = ["Latitude","Longitude","Name"];
   options = {   
     showTip: true
   };
   width = 550;
   height = 400;
}

结果

验证结果。

Map Chart using Latitude/Longitude
angular_googlecharts_maps.htm
广告