Geo chart custom using java swing
// Create geo chartGeoChartgeoChart = newGeoChart();
// Init geo data with low resolutiongeoChart.load(GeoData.Resolution.LOW);
// Set default zoomgeoChart.getGeoChart().zoom(2);
// Put data to geo chart (name, value, color)geoChart.putData("Name 1", 5000, newColor(89, 152, 97));
geoChart.putData("Name 2", 3500, newColor(200, 149, 61));
// Put data with random color (name, value)geoChart.putData("Name 3", 2500);// CreateGeoChartDataViewgeoChartDataView = newGeoChartDataView();
// Set it to geochartgeoChart.setGeoChartDataView(geoChartDataView);- gson-2.9.0.jar
- GeoJson : https://geojson-maps.ash.ms
