MapX使用数据库数据添加专题图(系列之三)

2016-02-19 12:47 9 1 收藏

下面是个超简单的MapX使用数据库数据添加专题图(系列之三)教程,图老师小编精心挑选推荐,大家行行好,多给几个赞吧,小编吐血跪求~

【 tulaoshi.com - 编程语言 】

关键字:MapX Delphi 专题图

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

作者:杨雨田 blue_bat@126.com

 ?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)
本文描述了在MapX中添加专题图的方法,其中MapX中关于添加专题图的过程语法描述如下(介于英语水平太高,能认识的英文字母大概还有二十多个,实在不愿意打开金山词霸给大家进行高质量的翻译,哈哈):
 
OBJECT.Add ([Type], [Field], [Name], [ComputeTheme]) 
 
OBJECT  Represents a Themes object.
Type   Specifies the type of thematic map to create. This takes a ThemeTypeConstants value. This is an optional parameter, and if not specified (or specified as miThemeAuto), MapX will attempt to choose a good default based on the number of fields passed in as well as what other theme types are already being displayed. If MapX cannot choose a default theme type, an error is generated.
Field(s)   Specifies the field or fields to thematically map. A field can be specified by name, index, or by a Field object. If you are creating a theme using multiple variables (such as a bar chart or pie chart), pass in a Fields collection or an array of field names, indexes, or Field objects. This is an optional parameter, and if not specified, MapX uses the first numeric field of the Dataset.
Name   Specifies the name of the thematic map. This is a String parameter. This is an optional parameter, and if not specified, MapX generates a name such as StatesBySales.
ComputeTheme  Boolean. The default value is True which will calculate the theme from the table data. If the value is set to False an invisible theme object will be created with 10 ranges for IndividualValue themes and 5 ranges for Ranged themes. You can then manually set the minimum and maximum values to define the theme with Theme.DataMin and Theme.DataMax. For ranged themes you can manually set the theme ranges or calculate equal size ranges determined by the minimum (Theme.DataMin) and maximum (Theme.DataMax) values.
 
关于专题图的风格共有以下几种:
        miThemeRanged  = 0 
        miThemeBarChart = 1 
        miThemePieChart = 2 
        miThemeGradSymbol = 3 
        miThemeDotDensity = 4 
        miThemeIndividualValue = 5 
        miThemeAuto = 6 
        miThemeNone = 9
具体都是什么样,请自己写代码看看,哈哈
 
下面是我写的部分代码:
unit Main;
 
interface
 
uses
  Windows, Messages,{略去一部分} SysUtils, Variants, Classes;
 
type
  TfrmMain = class(TForm)
    mapMain: TMap;                      {地图控件}
  private
    { Private declarations }
    ThemesList : TStringList;           {用来保存多个专题图的名称列表}
  public
    { Public declarations }
    procedure ToAddThemes(style : integer; TheName : string);   {添加专题图}
    procedure ToDeleteThemes;           {删除专题图}
  end;
 
var
  frmMain: TfrmMain;
 
implementation
 
{$R *.dfm}
 
{略去其他功能代码}
 
 
{
        添加专题图,参数style表示专题图风格,TheName表示图例标题
}
procedure TfrmMain.ToAddThemes(style : integer; TheName : string);
  function DefaultName : string;{用来生成一唯一的名称}
  begin
    {我用的方法是取一个当前时间,两次调用本函数的时间间隔应该不会少于0.5秒,
     所以这个方法在这个项目中可以取得唯一的名称}
    Result := 'YYT' + FormatDateTime('YYYYMMDDHHNNSSzzz',now);
  end;
var
  flds : array of string;       {字段列表}
  oBLayer : BindLayer;          {绑定图层}
  ds : Dataset;                 {MapX数据集}
  i : integer;                  {循环变量}
  thm : theme;                  {MapX专题图}
  str : string;                 {用于保存字符串}
begin
  {aqThemes可以是一个ADOQuery或者ADOTable,我使用的是ADOQuery。
   在这个ADOQuery中前四个字段分别是:
     ID(唯一的数字或者字符串,一般为编号),
     NAME(字符串,要素的标签),
     X(浮点数,要素的经度或者横坐标),
     Y(浮点数,要素的纬度或者纵坐标)。
   后面的其它字段都是数字类型,用来表示相关的数据。
    
    ◎请参考我的文章《从数据库绘制MapX图层(二)》,
    url是http://dev.csdn.net/article/31/31719.shtm
   }
  if not aqThemes.Active then
  begin
    dmData.GiveMsg('系统基础表没有打开!');
    exit;
  end;
  try
    {取一个唯一的名字,}
    str := DefaultName;
 
    {设置绑定图层的属性}
    oBLayer := coBindLayer.Create;
    progress.StepPlus(2);
    oBLayer.LayerName := str;
    oBLayer.LayerType := miBindLayerTypeXY;
    oBLayer.RefColumn1 := 'X';
    oBLayer.RefColumn2 := 'Y';
 
    {下面的调用和我在《从数据库绘制MapX图层(二)》使用的方法一样,
     请参考我的那篇文章,url是http://dev.csdn.net/article/31/31719.shtm}
 
    ds := mapMain.Datasets.Add(12,
                               aqThemes.Recordset,
                               str,
                               'ID',
                               EmptyParam,
                               oBLayer,
                               EmptyParam,
                               EmptyParam);
    {组织专题图现实的数据字段,存储在字符串数组中}
    SetLength(flds,aqThemes.Fields.Count - 3);
    for i:=3 to aqThemes.Fields.Count - 1 do
    begin
      flds[i - 3] := aqThemes.Fields.Fields[i].FieldName;
    end;
    {实际添加专题图的过程}
    thm := ds.Themes.Add(style,flds,DefaultName,EmptyParam);
    {设置专题图图例标题}
    thm.Legend.Title := TheName;
    {记录新添加的专题图名称}
    ThemesList.Add(str);
    {btnDeleteThemes是一个在本窗口上的按钮,用来删除专题图,
     添加专题图后就将他显示出来,如果删除了全部专题图就将他隐藏}
    btnDeleteThemes.Visible := true;
  except
    GiveMsg('创建专题图失败!');{自定义过程,给出出错提示}
  end;
end;
 
{
        删除专题图,我采用的方法是删除所有专题图
}
procedure TfrmMain.ToDeleteThemes;
var
  i : integer;  {循环变量}
begin
  for i:=0 to ThemesList.Count-1 do{循环所有添加了的专题图}
  begin
    {删除数据集}
    mapMain.Datasets.Remove(ThemesList.Strings[i]);
    {删除专题图}
    mapMain.Layers.Remove(ThemesList.Strings[i]);
    {如果只想删除某一个专题图,不用循环就行了}
  end;
  {此时已经没有专题图了,将删除专题图按钮隐藏}
  btnDeleteThemes.Visible := false;
  {清除专题图名称列表}
  ThemesList.Clear;
end;
 
//...
 
end.

来源:http://www.tulaoshi.com/n/20160219/1601920.html

延伸阅读
标签: ASP
      ASP有一个最重要的功能,就是它可以让你非常轻松地连接数据库。通常都是和一个Access或者一个SQL数据库相连。因为Access是最容易起步的,同时,在你的机器上也许已经都装有Access了,所以,在下面的例子中,我们都将使用Access来做例子。一旦你学习了ASP和Access数据库连接的核心技术方法,当你开始使用SQL server...
标签: ASP
  MYSQL数据库以它短小、方便、速度快、免费等优点成为很多网站目前首选数据库,但一般都是用PHP+MYSQL相结合来开发各种动态页面,其实ASP也可以使用MYSQL数据库开发动态页面,小弟我也是刚刚学会,不敢独享,所以特写了这篇文章供大伙参考。 我的环境是WINDOWS98+PWS4.0+mysql-3.23.32-win+PHP4 必要的软件:PWS4.0(呵呵,废...
学会使用基于Web数据库的管理工具PHPMyAdmin。 如果使用合适的工具,MySQL数据库的管理就会为得相当简单。应用MySQL命令行方式需要对MySQL知识非常熟悉,对SQL语言也是同样的道理。不仅如此,如果数据库的访问量很大,列表中数据的读取就会相当困难。 当前出现很多GUI MySQL客户程序,其中最为出色的是基于Web的phpMyAdmin工具...
从本节开始正式介绍各种SQL语句。本节介绍有关数据库级的SQL以及相关操作,查看、建立和删除等操作。 用SHOW显示已有的数据库 句法:SHOW DATABASES [LIKE wild] 如果使用LIKE wild部分,wild字符串可以是一个使用SQL的“%”和“_”通配符的字符串。 功能:SHOW DATABASES列出在MySQL服务器主机上的数据库。 你可...
1、使用SHOW语句找出在服务器上当前存在什么数据库: mysql SHOW DATABASES; +----------+ | Database | +----------+ | mysql | | test | +----------+ 3 rows in set (0.00 sec)  2、创建一个数据库abccs mysql CREATE DATABASE abccs; 注意不同操作系统对大小写的敏感。 3、选择你所创建的数据库...

经验教程

92

收藏

12
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部