TWorldSeries.AddCities
TWorldSeries
procedure AddCities(DestSeries: TChartSeries);
Unit
TeeWorldSeries
Description
Loads an internal resource consisting of World city names and XY geographical coordinates (latitude and longitude).
Cities are added to DestSeries series parameter (for example a TPointSeries) using the X,Y and Text city properties.
You can use this class procedure without the need to create a TWorldSeries:
Series2 := TPointSeries.Create(Self);
Series2.ParentChart := Chart1;
TWorldSeries.AddCities(Series2);