MapGuide Open Source:  Home |  Download |  Internals

Ticket #51 (closed task: fixed)

Opened 1 year ago

Last modified 1 year ago

Symbolization: Certain StartOffset / EndOffset / Repeat combinations are unhandled

Reported by: waltweltonlair Assigned to: waltweltonlair
Priority: medium Milestone: 2.0
Component: Server Version: 1.2.0
Severity: major Keywords:
Cc: External ID:

Description

The StartOffset, EndOffset, and Repeat parameters in LineUsage (for the new symbolization) allow you to control where symbols are drawn on the linestring feature.

Certain combinations of these are not yet being correctly handled.

If Repeat is <=0 then you'll only get a symbol at the start and / or end. Some examples:

  • StartOffset >= 0, EndOffset not specified:
    • if Repeat > 0, first symbol position is at the specified offset, following by additional regularly-spaced positions
    • if Repeat <= 0, get one symbol position at the specified offset (relative to the start of the curve)
  • EndOffset >= 0, StartOffset not specified:
    • if Repeat > 0, last symbol position ends at the specified offset, preceded by regularly-spaced positions
    • if Repeat <= 0, get one symbol position at the specified offset (relative to the end of the curve)
  • StartOffset >= 0, EndOffset >= 0:
    • if Repeat > 0, first and last symbol positions are at the specified offsets, with in between positions distributed at approximately the specified interval
    • if Repeat <= 0, only get a first and last symbol at the specified offsets

Change History

04/24/07 04:50:30 changed by waltweltonlair

  • summary changed from Certain StartOffset / EndOffset / Repeat combinations are unhandled to Symbolization: Certain StartOffset / EndOffset / Repeat combinations are unhandled.

Prefixing summary with "Symbolization"

05/21/07 04:38:01 changed by waltweltonlair

  • version deleted.
  • milestone changed from 1.2 to 1.3.

Support for line styles in the new symbolization will be completed in version 1.3.

09/14/07 08:27:55 changed by waltweltonlair

  • status changed from new to assigned.
  • owner set to waltweltonlair.

09/24/07 10:47:17 changed by waltweltonlair

  • status changed from assigned to closed.
  • version set to 1.2.0.
  • resolution set to fixed.

This has been fixed with submission r2125 (http://trac.osgeo.org/mapguide/changeset/2125)