提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
原创|使用教程|编辑:郝浩|2013-04-28 15:39:55.000|阅读 342 次
概述:在Map Suite MVC Edition中TextStyle主要用来在地图中标记项目。由于每个Shapefile都有一个相关的.dbf文件,它包含了每条记录的描述,使用TextStyle最常见的方式就是标记功能。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
在Map Suite MVC Edition中TextStyle主要用来在地图中标记项目。由于每个Shapefile都有一个相关的.dbf文件,它包含了每条记录的描述,使用TextStyle最常见的方式就是标记功能。例如,Shapefile包含了拥有世界上所有首都的相应.dbf文件,这个文件又包含了一个叫"CITY_NAME"的字段(如图一)。我们可以利用这个区域来标注地图上的城市。
图一
Map Suite MVC Edition有很多内置的TextStyles,它们将帮助我们快速设计地图中的城市标签。我们可以根据自己的喜好随便挑选TEXTSTYLE。
@{Html.ThinkGeo().Map("Map1", 600, 500) .MapBackground(new BackgroundLayer(new GeoSolidBrush(GeoColor.GeographicColors.ShallowOcean))) .CurrentExtent(-131.22, 55.05, -54.03, 16.91) .MapUnit(GeographyUnit.DecimalDegree) .StaticOverlay(overlay => { // All of this code can alternatively be placed in the controller. // Please reference the sample applications that came with your copy of Map Suite MVC Edition for detail. // World layer ShapeFileFeatureLayer worldLayer = new ShapeFileFeatureLayer(@"C:\Program Files (x86)\ThinkGeo\Map Suite MVC Evaluation Edition 6.0\Samples\CSharp HowDoISamples Razor\App_Data\cntry02.shp"); worldLayer.ZoomLevelSet.ZoomLevel01.DefaultAreaStyle = AreaStyles.Country1; worldLayer.ZoomLevelSet.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20; overlay.Layer(worldLayer); // Capital cities layer ShapeFileFeatureLayer capitalLayer = new ShapeFileFeatureLayer(@"C:\Program Files (x86)\ThinkGeo\Map Suite MVC Evaluation Edition 6.0\Samples\CSharp HowDoISamples Razor\App_Data\capital.shp"); capitalLayer.ZoomLevelSet.ZoomLevel01.DefaultPointStyle = PointStyles.Capital3; capitalLayer.ZoomLevelSet.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20; overlay.Layer(capitalLayer); // Label layer ShapeFileFeatureLayer capitalLabelLayer = new ShapeFileFeatureLayer(@"C:\Program Files (x86)\ThinkGeo\Map Suite MVC Evaluation Edition 6.0\Samples\CSharp HowDoISamples Razor\App_Data\capital.shp"); // We'll use a preset TextStyle. Here we pass in the "CITY_NAME", which is the name of the field we want to label on the map. capitalLabelLayer.ZoomLevelSet.ZoomLevel01.DefaultTextStyle = TextStyles.Capital3("CITY_NAME"); capitalLabelLayer.ZoomLevelSet.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20; // Since the map is drawn with tiles, the label needs to draw on the margin to make sure the text is complete after joining the tiles together. // Change the number below (to 0, for example) and you will be able to see what we mean. capitalLabelLayer.DrawingMarginPercentage = 50; overlay.Layer(capitalLabelLayer); }) .Render(); }
效果图如下:
图二、使用TextStyle的欧洲地图
现在我们知道如何使渲染文字和符号,接下来我们在一个单层中定义两种不同ZoomLevels,并创建自己的自定义样式和TextStyle。
@{Html.ThinkGeo().Map("Map1", 600, 500) .MapBackground(new BackgroundLayer(new GeoSolidBrush(GeoColor.GeographicColors.ShallowOcean))) .CurrentExtent(5, 78, 30, 26) .MapUnit(GeographyUnit.DecimalDegree) .StaticOverlay(overlay => { // All of this code can alternatively be placed in the controller. // Please reference the sample applications that came with your copy of Map Suite MVC Edition for detail. // World layer ShapeFileFeatureLayer worldLayer = new ShapeFileFeatureLayer(@"C:\Program Files (x86)\ThinkGeo\Map Suite Mvc Evaluation Edition 6.0\Samples\CSharp HowDoISamples Razor\App_Data\cntry02.shp"); worldLayer.ZoomLevelSet.ZoomLevel01.DefaultAreaStyle = AreaStyles.Country1; worldLayer.ZoomLevelSet.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20; overlay.Layer(worldLayer); // Capital layer ShapeFileFeatureLayer capitalLayer = new ShapeFileFeatureLayer(@"C:\Program Files (x86)\ThinkGeo\Map Suite Mvc Evaluation Edition 6.0\Samples\CSharp HowDoISamples Razor\App_Data\capital.shp"); // We can customize our own Style. Here we pass in a color and a size. capitalLayer.ZoomLevelSet.ZoomLevel01.DefaultPointStyle = PointStyles.CreateSimpleCircleStyle(GeoColor.StandardColors.White, 7, GeoColor.StandardColors.Brown); // The Style we set here is applied from ZoomLevel01 to ZoomLevel05. That means if we zoom in a bit more, this particular style will not be visible anymore. capitalLayer.ZoomLevelSet.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level05; capitalLayer.ZoomLevelSet.ZoomLevel06.DefaultPointStyle = PointStyles.Capital3; // The Style we set here is applied from ZoomLevel06 to ZoomLevel20. That means if we zoom out a bit more, this particular style will not be visible anymore. capitalLayer.ZoomLevelSet.ZoomLevel06.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20; overlay.Layer(capitalLayer); // Label layer ShapeFileFeatureLayer capitalLabelLayer = new ShapeFileFeatureLayer(@"C:\Program Files (x86)\ThinkGeo\Map Suite Mvc Evaluation Edition 6.0\Samples\CSharp HowDoISamples Razor\App_Data\capital.shp"); // We can customize our own TextStyle. Here we pass in the font, the size, the style and the color. capitalLabelLayer.ZoomLevelSet.ZoomLevel01.DefaultTextStyle = TextStyles.CreateSimpleTextStyle("CITY_NAME", "Arial", 8, DrawingFontStyles.Italic, GeoColor.StandardColors.Black, 3, 3); // The TextStyle we set here is applied from ZoomLevel01 to ZoomLevel05. capitalLabelLayer.ZoomLevelSet.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level05; capitalLabelLayer.ZoomLevelSet.ZoomLevel06.DefaultTextStyle = TextStyles.Capital3("CITY_NAME"); // The TextStyle we set here is applied from ZoomLevel06 to ZoomLevel20. capitalLabelLayer.ZoomLevelSet.ZoomLevel06.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20; capitalLabelLayer.DrawingMarginPercentage = 50; overlay.Layer(capitalLabelLayer); }) .Render(); }
通过上面的操作后,你还能想象地图的样子吗?请看下面的图片(图三)。起初它看起来和上面的图二是一样的,但是放大后,你可以看到地图的变化了(见图四)。
图三、拥有两种ZoomLevels的欧洲城市地图,地图放大前
图四、拥有两种ZoomLevels的欧洲城市地图,地图放大后
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@capbkgr.cn
文章转载自:慧都控件网在 Microsoft Excel 中,复制行、列和单元格是日常数据处理中的常见操作。本文将介绍如何使用 Spire.XLS for Java 和 Java 在 Excel 中复制行、列和单元格数据并保留格式。
雷达图又称蜘蛛图,是一种显示二维多元数据的图形方法。图表上的每个辐条代表一个不同的变量,数据点沿着这些辐条绘制。雷达图尤其适用于比较不同实体在多个标准中的表现。本文将演示如何使用 Spire.XLS for Python 通过 Python 在 Excel 中创建雷达图。
本文将为大家介绍如何使用图表控件SciChart WPF实现WPF应用程序的DPI感知,欢迎下载最新版组件体验!
本文将演示如何使用DevExpress WPF Grid控件实现移动和调整列大小,欢迎下载最新版组件体验!
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@capbkgr.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢