GWT Google Charts 使用经度纬度地图图表
以下是使用经度纬度地图图表的示例。
我们已经在《GWT Google Charts 入门程序》章节中看到了用于绘制图表的基本步骤。现在,让我们看一个使用经度纬度地图图表的例子。
GWT Google Charts 使用经度纬度地图图表 配置
我们使用Map类来显示使用经度纬度地图图表。
// map chart
Map chart = new Map();
GWT Google Charts 使用经度纬度地图图表 示例
package com.yiidian.helloWorld.client;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.*;
import com.googlecode.gwt.charts.client.ChartLoader;
import com.googlecode.gwt.charts.client.ChartPackage;
import com.googlecode.gwt.charts.client.ColumnType;
import com.googlecode.gwt.charts.client.DataTable;
import com.googlecode.gwt.charts.client.corechart.*;
import com.googlecode.gwt.charts.client.map.Map;
import com.googlecode.gwt.charts.client.map.MapOptions;
import com.googlecode.gwt.charts.client.options.*;
public class HelloWorld implements EntryPoint {
private Map chart;
private void initialize() {
ChartLoader chartLoader = new ChartLoader(ChartPackage.MAP);
chartLoader.loadApi(new Runnable() {
public void run() {
// Create and attach the chart
chart = new Map();
RootPanel.get().add(chart);
draw();
}
});
}
private void draw() {
// Prepare the data
DataTable data = DataTable.create();
data.addColumn(ColumnType.NUMBER , "Latitude");
data.addColumn(ColumnType.NUMBER, "Longitude");
data.addColumn(ColumnType.STRING, "Name");
data.addRow(37.4232, -122.0853, "Work");
data.addRow(37.4289, -122.1697, "University");
data.addRow(37.6153, -122.3900, "Airport");
data.addRow(37.4422, -122.1731, "Shopping");
// Set options
MapOptions options = MapOptions.create();
options.setShowTip(true);
// Draw the chart
chart.draw(data,options);
chart.setWidth("600px");
chart.setHeight("400px");
}
public void onModuleLoad() {
initialize();
}
}
输出结果为:
热门文章
优秀文章