MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example 1.4 Labeling the Map

一、前言

  MapServer拥有非常灵活的标签标记系统。它支持bitmap以及truetype字体等。使用truetype字体同时还支持其缩放。标签的角度和位置是可以自定义的。

  通过把标签的位置和角度以及其他参数的设置使用,你可以把你的地图装饰得更加美观,信息体现的更加丰富。

二、搭建Example1.4站点

  所有的学习都要通过实践,还是从搭建站点开始。

  在cmd中输入:cd /d E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps

  在cmd中输入:md Example1.4

  在cmd中输入:cd Example1.4

  在cmd中输入:md data

  在cmd中输入:md logs

  在cmd中输入:md fonts

  在cmd中输入:cd.>web.config

  在cmd中输入:cd.>example1_4.map

  将states_ugl.dbf、states_ugl.shp、states_ugl.shx等三个文件放入到data文件夹下面。

  将tutorial/fonts中的fonts.list、Vera.ttf(所有的.ttf字体文件)拷贝到Example1.4/fonts文件夹中。

  (如果不清楚tutorial文件夹是怎么回事,请查看《MapServer Tutorial——MapServer7.2.1教程学习——教程背景》,里面有样例说明和应用数据下载地址:http://download.osgeo.org/mapserver/docs/mapserver-tutorial.zip

  

  在IIS中创建Example1.4站点,端口8014。web.config内容如下:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="MapServerFastCgi" path="*" verb="*" type="" modules="FastCgiModule"
          scriptProcessor="E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\bin\mapserv.exe"
          resourceType="Unspecified" requireAccess="Script" allowPathInfo="false" preCondition="" />
</handlers>
<caching enabled="true" enableKernelCache="true" />
</system.webServer>
</configuration>

  给应用程序池添加对logs文件夹的读写权限。

  在cmd中输入:icacls "E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\logs" /grant "IIS AppPool\Example1.4":(OI)(CI)RW  

  mapfile(example1_4.map)文件如下:

# The annotated map file (sort of)
# Created by Pericles S. Nacionales for the MapServer tutorial
# 20050408
#
# MapServer map file uses the pound sign (#) to denote the start of a line
# comment--each line that needs to be commented has to be prepended with a "#".
#
# Map files begin with MAP keyword to signify the start of the map object.
# Well, the entire map file is THE map object. Enclosed between MAP and END
# at the very bottom of this map file, are keyword/value pairs and other
# objects.
MAP
IMAGETYPE PNG
EXTENT -97.238976 41.619778 -82.122902 49.385620
SIZE 400 300
SHAPEPATH "./data"
IMAGECOLOR 255 255 255
FONTSET "./fonts/fonts.list" # Layer objects are defined beneath the map object. You need at least one
# layer defined in your map file before you can display a map... You can
# define as many layers as you'd like although a limit is typically hard-coded
# in map.h in the MapServer source. The default limit is set at 100. You'd
# have to have a very specialized application to need more than 100 layers in
# your application. # Start of LAYER DEFINITIONS ---------------------------------------------
LAYER # States polygon layer begins here
NAME states_poly
DATA states_ugl
STATUS OFF
TYPE POLYGON # CLASSITEM defines the non-spatial attribute that you will be using to
# separate a layer into classes. This attribute will be in the DBF file
# of your shapefile (it will be different for each data format). In this
# example the shapefile states_ugl has an associated database
# (states_ugl.dbf) that contains an attribute called "CLASS". You will be
# using two values in the CLASS attribute to separate the classes (also
# called themes) used in this layer--land and water. CLASSITEM is used in
# association with the EXPRESSION parameter in the CLASS object. See below.
CLASSITEM "CLASS" # Just like CLASSITEM, LABELITEM defines the database attribute that you
# will be using to draw labels. In this case, the values of the attribute
# "STATE" will be used to label the states polygons.
LABELITEM "STATE" # The class object is defined within the layer object. You can define as
# many classes as you need (well, there are limits as with layers, but it's
# senseless to define more than ten on a "normal" layer. There are
# situations, however, where you might have to do it.)
CLASS
NAME 'States'
EXPRESSION 'land' # There are styles in a class, just like there are classes in a layer,
# just like there are layers in a map. You can define multiple styles in
# a class just as you can define multiple classes in a layer and multiple
# layers in a map.
STYLE
COLOR 232 232 232
END # There can be labels in a class, just like there are classes in a layer,
# just like there are layers in a map. You can define multiple labels in
# a class just as you can define multiple classes in a layer and multiple
# layers in a map.
# MapServer has a very flexible labeling system. With that flexibility
# comes complexity, specially when using truetype fonts. Please read
# through the LABEL section of the MapServer map file documentation at
# http://www.mapserver.org/mapfile for more information.
LABEL
COLOR 132 31 31
TYPE TRUETYPE
FONT arial-bold
SIZE 12
ANTIALIAS TRUE
POSITION CL
PARTIALS FALSE
MINDISTANCE 300
BUFFER 4
# create a background shadow
# Note that the tutorial package has not been updated, so this has
# to be done manually!
#SHADOWCOLOR 218 218 218 # prior to version 6
#SHADOWSIZE 2 2 # prior to version 6
STYLE # since to version 6
GEOMTRANSFORM 'labelpoly'
COLOR 218 218 218
OFFSET 2 2
END # STYLE
END # end of label
END CLASS
NAME 'Water'
EXPRESSION 'water' STYLE
COLOR 198 198 255
END
END
END # States polygon layer ends here LAYER # States line layer begins here
NAME states_line
DATA states_ugl
STATUS OFF
TYPE LINE CLASSITEM "CLASS"
CLASS
NAME 'State Boundary'
EXPRESSION 'land'
STYLE
COLOR 64 64 64
END
END
END # States line layer ends here
# End of LAYER DEFINITIONS -------------------------------
  DEBUG 5
  CONFIG "MS_ERRORFILE" "logs\ms.log"
END # All map files must come to an end just as all other things must come to...

  在浏览器中输入:http://localhost:8014/mapserv?map=../apps/Example1.4/example1_4.map&layer=states_poly&layer=states_line&mode=map

  

三、MapFIle文件(example1_4.map)讲解

  MapFIle文件结构

                             MAP
(states_poly) LAYER----------|---------LAYER (states_line)
(land) CLASS-----|-CLASS (water) |-CLASS
STYLE-|-LABEL |-STYLE |-STYLE</pre>

  LABEL 对象以及其中的关键词

    FONTSET

      指定字体文件清单文件的全路径或相对路径(如:./fonts/fonts.list 或 E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\fonts.list)

      fonts.list 文件由两部分组成,名称和路径(相对路径或绝对路径)。

      名称是路径所对应的字体集的实际名称(如:Vera.ttf 是当前文件,但是其字体的实际名称是arial)。

      路径是Vera.ttf文件与fonts.list的相对路径或绝对路径。

      当前案例中,fonts.list 文件与 ttf字体文件均在 fonts 文件夹下面。可查看 fonts.list 内容,此案例中采用的是相对路径。

# This be the fonts list
arial Vera.ttf
arial-bold VeraBd.ttf
arial-italic VeraIt.ttf
arial-bold-italic VeraBI.ttf
times VeraSe.ttf
times-bold VeraSeBd.ttf
andale-mono VeraMono.ttf
vera_sans Vera.ttf
vera_sans-bold VeraBd.ttf
vera_sans-italic VeraIt.ttf
vera_sans-bold-italic VeraBI.ttf
vera_sans_mono VeraMono.ttf
vera_sans_mono-bold VeraMoBd.ttf
vera_sans_mono-italic VeraMoIt.ttf
vera_sans_mono-bold-italic VeraMoBI.ttf
vera_serif VeraSe.ttf
vera_serif-bold VeraSeBd.ttf

      如果我们采用绝对路径试试(顺便把mapfile文件中的LABEL对象里面的FONT修改为arial-italic):

# This be the fonts list
arial E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\Vera.ttf
arial-bold E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraBd.ttf
arial-italic E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraIt.ttf
arial-bold-italic E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraBI.ttf
times E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraSe.ttf
times-bold E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraSeBd.ttf
andale-mono E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraMono.ttf
vera_sans E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\Vera.ttf
vera_sans-bold E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraBd.ttf
vera_sans-italic E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraIt.ttf
vera_sans-bold-italic E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraBI.ttf
vera_sans_mono E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraMono.ttf
vera_sans_mono-bold E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraMoBd.ttf
vera_sans_mono-italic E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraMoIt.ttf
vera_sans_mono-bold-italic E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraMoBI.ttf
vera_serif E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraSe.ttf
vera_serif-bold E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\fonts\VeraSeBd.ttf

      刷新页面,看到效果如下:

      

      可以使用相对路径,也可以使用绝对路径,然后字体已经变为斜体。

      字体相关数据信息网站:https://www.freetype.org/

    LABELITEM

      上一章学过CLASSITEM,LABELITEM与其有类似的理解。

      但是其与CLASSITEM又不相同,LABELITEM是指定显示某个字段中的数据,当前案例中是“STATE”。

      LABELITEM 在 LAYER 标签中,而 LABEL 在 CLASS 标签中。所以目前只显示三个标签的原因是:只有 CLASS 中 EXPRESSION 为 land 的 几个图形才会显示标签,同时MINDISTANCE决定了重叠的标签在执行像素内不显示。

      可以在cmd中输入:cd /d E:\SvnWorkspace\LY_WEB_GIS\branches\Documents\ms4w-mapserver-for-wimdows\release-1911-x64-gdal-2-3-3-mapserver-7-2-1\apps\Example1.4\data

      在cmd中输入:ogrinfo  -al -ro states_ugl.shp 查看所有的数据。

      在cmd中输入:ogrinfo -al -so -where CLASS='land' states_ugl.shp 查看 CLASS='land' 的概要数据。

      

      如果将MINDISTANCE修改为100时,刷新浏览器,你会发现,又出来了一个标签。

      

    LABEL

      以LABEL标签开头。LABEL对象在其他对象中使用,当前案例是在CLASS对象中使用,也可以在其他标签中使用,如:SCALEBAR。

      LABEL标签的详情见:https://www.mapserver.org/mapfile/label.html

    COLOR

      目前案例中位于LABEL中的COLOR是用来定义label中的文字颜色。

    SHADOWCOLOR

      文字的阴影颜色。(自MapServer 6开始,LABEL STYLE 被 GEOMTRANSFORM LABELPOLY 所替代。其实mapfile中已经更新,只是官网上面的说明没有更新。)

# create a background shadow
# Note that the tutorial package has not been updated, so this has
# to be done manually!
#SHADOWCOLOR 218 218 218 # prior to version 6
#SHADOWSIZE 2 2 # prior to version 6
STYLE # since to version 6
  GEOMTRANSFORM 'labelpoly' #新版本的MapSerer 定义了几何转换
  COLOR 218 218 218         #阴影颜色
  OFFSET 2 2                #字体阴影的大小
END # STYLE
 

    SHADOWSIZE

      文字阴影的尺寸,由X,Y组成,2 2 表示2像素宽,2像素高。(自MapServer 6开始,LABEL STYLE 被 GEOMTRANSFORM LABELPOLY 所替代。其实mapfile中已经更新,只是官网上面的说明没有更新。)

    其实看到此处,以及对照官网上面的相关文档,我又很多疑问。首先查看几处资料:

      1.https://www.mapserver.org/mapfile/geomtransform.html#labels-label-style-only

        其中“Labels (LABEL STYLE only)”中写道如下:

The following simple geometry transformations are available at the LABEL STYLE level: #在LABEL标签的STYLE标签中,使用GEOMTRANSFORM有两种类型,分别为:labelpnt 和 labelpoly

labelpnt
labelpoly These are used for label styling (background colour, background shadow, background frame). #他们是为label的背景颜色,背景阴影,背景框架做样式设置的。 Note The result of using labelpnt is affected by the LAYER LABELCACHE setting. If LABELCACHE is ON (the default), the label will be shifted when a non-zero sized symbol is added using labelpnt. labelpnt and labelpoly
  • GEOMTRANSFORM labelpnt produces the geographic position the label is attached to. This corresponds to the center of the label text only if the label is in position CC.

    GEOMTRANSFORM “labelpnt”

  • GEOMTRANSFORM labelpoly produces a polygon that covers the label plus a 1 pixel padding.

    GEOMTRANSFORM “labelpoly”

Note Only available for STYLE in the LABEL context.

These transformations can be used to make background rectangles for labels and add symbols to the label points.

Class definitions for the example:

CLASS
STYLE
OUTLINECOLOR 255 255 204
END # STYLE
LABEL
SIZE giant
POSITION UC
   #好了,第一个的疑问就在此处,同样 LABEL 中 GEOMTRANSFORM 的值均为"labelpoly",是如何判断当前 设置的为:阴影、背景颜色、还是边线呢?
   #设置shadow难道是因为style标签中有 OFFSET 标签吗?
   #设置 backgground 是因为只有COLOR,没有其他标签吗?
   #设置outline是因为有OUTLINECOLOR标签,和WIDTH标签吗?
   #我实在是有点费解。
STYLE # shadow
GEOMTRANSFORM "labelpoly"
COLOR 153 153 153
OFFSET 3 3
END # Style
STYLE # background
GEOMTRANSFORM "labelpoly"
COLOR 204 255 204
END # Style
STYLE # outline
GEOMTRANSFORM "labelpoly"
OUTLINECOLOR 0 0 255
WIDTH 1
END # Style
STYLE
GEOMTRANSFORM "labelpnt"
SYMBOL 'circlef' #此处是自定义符号,设置红色圆点的。
COLOR 255 0 0
SIZE 15
END # Style
END # Label
END # Class

Symbol definition for the circlef symbol:

SYMBOL
NAME "circlef"
TYPE ellipse
FILLED true
POINTS
1 1
END # POINTS
END # SYMBOL

      2.https://www.mapserver.org/mapfile/style.html 中对GEOMTRANSFORM有段定义

GEOMTRANSFORM [bbox|centroid|end|labelpnt|labelpoly|start|vertices|<expression>] 
  Used to indicate that the current feature will be transformed before the actual style is applied. Introduced in version 5.4.
  • bbox: produces the bounding box of the current feature geometry.
  • centroid: produces the centroid of the current feature geometry.
  • end: produces the last point of the current feature geometry. When used with ANGLE AUTO, it can for instance be used to render arrowheads on line segments.
  • labelpnt: used for LABEL styles. Draws a marker on the geographic position the label is attached to. This corresponds to the center of the label text only if the label is in position CC.
  • labelpoly: used for LABEL styles. Produces a polygon that covers the label plus a 1 pixel padding.
  • start: produces the first point of the current feature geometry. When used with ANGLE AUTO, it can for instance be used to render arrow tails on line segments.
  • vertices: produces all the intermediate vertices (points) of the current feature geometry (the start and end are excluded). When used with ANGLE AUTO, the marker is oriented by the half angle formed by the two adjacent line segments.
  • <expression>: Applies the given expression to the geometry. Supported expressions:
    • (buffer([shape],dist)): Buffer the geometry ([shape]) using dist pixels as buffer distance. For polygons, a negative dist will produce a setback.
    • (generalize([shape],tolerance)): simplifies a geometry ([shape]) in way comparable to FME’s ThinNoPoint algorithm. See http://trac.osgeo.org/gdal/ticket/966 for more information.

    Note Depends on GEOS.

    • (simplify([shape],tolerance)): simplifies a geometry ([shape]) using the standard Douglas-Peucker algorithm.
    • (simplifypt([shape],tolerance)): simplifies a geometry ([shape]), ensuring that the result is a valid geometry having the same dimension and number of components as the input. tolerance must be non-negative.
    • (smoothsia([shape], smoothing_size, smoothing_iteration, preprocessing)): will smooth a geometry ([shape]) using the SIA algorithm

    Example (polygon data set) - draw a two pixel wide line 5 pixels inside the boundary of the polygon:

STYLE
OUTLINECOLOR 255 0 0
WIDTH 2
GEOMTRANSFORM (buffer([shape],-5))
END

  There is a difference between STYLE and LAYER GEOMTRANSFORM. LAYER-level will receive ground coordinates (meters, degrees, etc) and STYLE-level will receive pixel coordinates. The argument to methods such as simplify() must be in the same units as the coordinates of the shapes at that point of the rendering workflow, i.e. pixels at the STYLE-level and in ground units at the LAYER-level.

LAYER NAME "my_layer"
TYPE LINE
STATUS DEFAULT
DATA "lines.shp"
GEOMTRANSFORM (simplify([shape], 10)) ## 10 ground units
CLASS
STYLE
GEOMTRANSFORM (buffer([shape], 5) ## 5 pixels
WIDTH 2
COLOR 255 0 0
END
END
END

  See also GEOMTRANSFORM - Geometry Transformations

  3.https://www.mapserver.org/mapfile/label.html 也有一段对STYLE的使用定义

STYLE

  The start of a STYLE object.
  Label specific mechanisms of the STYLE object are the GEOMTRANSFORM options: #此处也说明了,在STYLE对象中使用 GEOMTRANSFORM ,当然,前提是基于 LABEL 的使用 STYLE
    GEOMTRANSFORM [labelpnt|labelpoly]
    Creates a geometry that can be used for styling the label. Does not apply to ANGLE FOLLOW labels.
    • labelpnt draws a marker on the geographic position the label is attached to. This corresponds to the center of the label text only if the label is in position CC.
    • labelpoly generates the bounding rectangle for the text, with 1 pixel of padding added in all directions.

    The resulting geometries can be styled using the mechanisms available in the STYLE object.

      Example - draw a red background rectangle for the labels (i.e. billboard) with a “shadow” in gray:

STYLE
GEOMTRANSFORM 'labelpoly'
COLOR 153 153 153
OFFSET 3 2
END # STYLE
STYLE
GEOMTRANSFORM 'labelpoly'
COLOR 255 0 0
END # STYLE

  New in version 6.0.

  TYPE

    指定LABEL使用的字体类型。TRUETYPE 或 BITMAP。

  FONT

    指定使用哪种字体。如果指定TYPE为TRUETYPE,你需要指定使用哪种字体。

  SIZE

    指定字体的大小,TYPE为TRUETYPE时,使用像素;TYPE为BITMAP时,使用如:small、large。

  ANTIALIAS

    truetype类型字体的抗锯齿开关,值为:TRUE或FALSE。

  POSITION

    label标签中文字在label标签中的位置。其值由垂直位置和水平位置组成。

    垂直位置的值由三个,分别为:C(中间,center)、U(上面,upper)、L(下面,lower)。

    水平位置的值由三个,分别为:C(中间,center)、L(左边,left)、R(右边、right)。

    缺省值:AUTO

  PARTIALS

    告诉MapServer是否生成完整的标签文本(个人认为是,如果标签中文本长度过程,则缺省显示),值为:TRUE或FALSE。

  MINDISTANCE

    设置重叠标签的最小距离,像素。(个人认为是按照两个标签的开始位置比对计算。)

  BUFFER

    设置标签填充外边距(像素)。用于增强可读性。(其实如果会前端CSS的应该比较容易理解padding,简单理解就是表示两个盒子之间的空白边距。)

四、后记

  在做这个例子的过程中,遇到了一些尚未理解的位置。LABEL中的STYLE 下面 的 GEOMTRANSFORM 重点标记一下。

  然后学会了更多的用命令查询shp数据。 -ro:只读打开文件。-al:列出所有数据。-rl:将所有数据重点关键数据进行展示。-where:像查询语句一样,根据条件过滤展示数据。

MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example 1.4 Labeling the Map的更多相关文章

  1. MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.7 Adding a wms layer

    MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.7 Adding a wms layer 前言 Add OGC WMS Layers( ...

  2. MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.6 Defining Projections and Extents

    MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.6 Defining Projections and Extents 一.前言 当在m ...

  3. MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.5 Adding a raster layer

    MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.5 Adding a  raster layer 一.前言 MapServer不仅支持 ...

  4. MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.3 Displaying Classes in a Layer

    MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.3 Displaying Classes in a Layer 一.前言 关于第一节的 ...

  5. MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.2 Static Map with Two Layers

    MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.2 Static Map with Two Layers 一.前言 上一篇博客< ...

  6. MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.1 A map with single layer

    MapServer Tutorial——MapServer7.2.1教程学习——第一节用例实践:Example1.1 A map with single layer 一.前言 开始MapServer用 ...

  7. MapServer Tutorial——MapServer7.2.1教程学习——第一节:MapServer的基本配置管理,静态地图应用以及MapFile文件

    MapServer Tutorial——MapServer7.2.1教程学习——第一节:MapServer的基本配置管理,静态地图应用以及MapFile文件 前言 万事开头难,有了<MapSer ...

  8. MapServer Tutorial——MapServer7.2.1教程学习(大纲)

    MapServer Tutorial——MapServer7.2.1教程学习(大纲) 前言 最近在学习Gis方面的知识,因为电脑硬件配置偏低,顾选择MapServer入手.网上搜索MapServer系 ...

  9. MapServer Tutorial——MapServer7.2.1教程学习——教程背景

    MapServer Tutorial——MapServer7.2.1教程学习——教程背景 一.前言 目前处于MapServer学习入门阶段,所以每一步都需要打下扎实基础.尽自己最大的努力,去学习知识的 ...

随机推荐

  1. 构建 Owin 中间件 来获取客户端IP地址

    Not so long ago, we discussed on this blog the possible ways of retrieving the client’s IP address i ...

  2. int 的重载

    测试代码: 结果: 分析: 首先创建两个对象同时进行初始化所以两次调用带参的构造函数: 其次在创建一个 对象然后将其等于前两个对象相加,这里由于该类没有重载+运算符而是重载了int 所以当两个对象相加 ...

  3. Git换行符是如何精确控制的

    Git换行符是如何精确控制的 Checkout Windows-style, commit Unix-style Git will convert LF to CRLF when checking o ...

  4. 让sublime可以和visual studio一样自动在运算符前后添加空格的插件

    用过vs的人都知道,vs会自动在代码中运算符的前后加空格,比如 i=1; 换行后会自动变成i = 1; 开始觉得这个挺烦的,后来习惯了,发现这个功能还是挺好的,然代码更清晰. 最近换了sublimet ...

  5. Linux hostname设置,静态ip设置,hostname与静态ip相互映射

    1,hostname设置 永久设置: centos 7 下,切换到root 用户 vi /etc/hostname 输入要修改的hostname centos 6或者其他linux 系统,可能在/et ...

  6. Jmeter对jar包的调用赋值

    一.前言 在我们测试接口的过程中,可能有时需要用到第三方jar包来生成一些测试数据(如有时需要对参数的输入值使用第三方jar包进行加密操作),涉及到这种的情况,普遍做法是:手动调用jar包获得需要的值 ...

  7. Python多线程threading的使用

    一. threading的参数传递,参数之后的’,‘不能少,此处的’,‘是用来区分此参数作为元组(包含多个参数)来传递的,而不是单个参数传递 #coding:utf- import threading ...

  8. Linux基础命令---sysctl修改内核参数

    sysctl sysctl指令用来修改正在运行的内核参数,可以修改的参数都保存在/proc/sys/目录中,修改会立即生效.Linux中的sysctl支持需要Procfs.您可以使用sysctl来读取 ...

  9. CSS——对height和line-height的理解

    最近在做CSS界面时经常遇到line-height和height这两个属性,一直没搞很明白,今天静下心来好好网上查阅了一下,算是有所领悟.https://blog.csdn.net/a20131263 ...

  10. .net MVC4一个登陆界面加验证

    Model using System; using System.Collections.Generic; using System.IO; using System.Linq; using Syst ...