Symbol Objects |
Icon, Dot, Box, Circle, and Square objects are all symbols that represent features on a map. The objects are interchangeable. Any time you can use one of these, you could use any other.
Tip |
---|
Icon, Dot and Box objects are commonly used when drawing Shield objects. |
An Icon represents an image on a map, such as a road sign.
ICON<[x,y] (image)>
ICON<us_hwy>
Specifies, in pixels, offset coordinates based on the center of the image. This optional parameter is used for positioning. If it is not set, the center of the icon will be Width / 2, Height / 2.
Specifies an image to use for the icon. This is done by passing in one of the built in constants canada_hwy, us_hwy or us_interstate, or using custom image data, which can be added using Verizon Connect WorkBench.
A Dot represents either a round or square feature on a map, such as a city or a building. It is similar to a Circle or Square object, but has a shape and an outline defined in addition to the size and fill.
DOT<(shape), size, outline, fill>
DOT<round, 10, BRUSH<(40,0,0)>, BRUSH<!white>>
A Box represents a rectangular feature on a map, with varying degrees of rounding of the edges. This object could be used for a road shield.
BOX<outline, fill[, minwidth[, rounding]]>
BOX<PEN<!black,1>,BRUSH<!white>,20,8>
A Circle represents a round feature on a map, such as a city. This object is similar to a Dot, except that it is always round and if you specify several size and fill combinations, each subsequent circle is rendered on top of the previous circle. If you specify a smaller circle followed by a larger circle, you can only see the larger circle. If you specify a larger circle followed by a smaller circle, the larger circle will appear like a border around the smaller circle. You can specify one or more circles.
CIRCLE<size, fill{, size, fill}>
CIRCLE<10, BRUSH<(40,0,0)>, 5, BRUSH<!white>>
Diameter of the circle in pixels.
Brush object including the color to use for filling the circle.
A Square represents a square-shaped feature on a map, such as a building. This object is similar to a Dot, except that it is always square and if you specify several size and fill combinations, each subsequent square is rendered on top of the previous square. If you specify a smaller square followed by a larger square, you can only see the larger square. If you specify a larger square followed by a smaller square, the larger square will appear like a border around the smaller square. You can specify one or more squares.
SQUARE<size,fill{, size, fill}>
SQUARE<10, BRUSH<(40,0,0)>, 5, BRUSH<!white>>
Diameter of the square in pixels.
Brush object including the color to use for filling the square.