Skip to main content

PolylineCollection

The PolylineCollection object enables you to apply bulk actions to a collection of polylines. The polylines can be organized by tags so that you can apply the bulk actions to a subset of the polylines.

Example usage

const polylineCollection = G.polylineCollection();
polylineCollection.add(polyline1, 'tag1');
polylineCollection.add(polyline2, ['tag2']);
polylineCollection.add(polyline3, ['tag1', 'tag2']);
polylineCollection.add(polyline4, 'tag2');
polylineCollection.add(polyline5, 'tag3');
polylineCollection.add(polyline6, ['tag4']);
polylineCollection.add(polyline7, ['tag1', 'tag3', 'tag4']);
polylineCollection.add(polyline8);
polylineCollection.add(polyline9);

As you can see, you can assign one tag, multiple tags, or no tags.

You can pass a single tag as a string, a single tag as an array, or an array of tags. Tags must be a string value.

If you assign no tag then an internal default tag is applied. This is intended to allow you to use a polyline collection with no tags if desired. Typically you would not mix polylines with tags and those with no tags in the same collection. There is no way to target only those polylines with the internal default tag.

Creating the PolylineCollection object

G.polylineCollection(): PolylineCollection

The PolylineCollection object does not take any parameters.

const polylineCollection = G.polylineCollection();

Methods

add

add(p: Polyline, tag: string|string[]): void {

Add a polyline to the collection with zero or more tags.

ParameterTypeRequiredDescription
polylinePolylinesvg fileThe polyline object to add.
tagstring|string[]One or more string tags. This allows you to pass multiple tags as strings to the method.

No tags:

polylineCollection.add(polyline);

One tag:

polylineCollection.add(polyline, 'tag1');
polylineCollection.add(polyline, ['tag1']);

Multiple tags:

polylineCollection.add(polyline, ['tag1', 'tag2', 'anotherTag', 'andAnotherTag']);

clear

clear(): void

Remove all polylines and tags from the collection.

polylineCollection.clear();

clone

clone(): PolylineCollection

const copy = polylineCollection.clone();

hasData

hasData(): boolean

Return whether the collection has at least one polyline.

if (polylineCollection.hasData()) {
// There is at least one polyline in the collection
}

hide

hide(tag: string|string[]): void

Hide the polylines that are assigned to the passed tag(s).

ParameterTypeRequiredDescription
tagsstring|string[]svg fileOne or more string tags. This allows you to pass multiple tags as strings to the method.

If multiple tags are passed then any polyline that is assigned to one of the passed tags is hidden. Multiple tags does not mean that a polyline has to be assigned to all of the passed tags.

If no tags are passed then nothing happens.

Hide polylines that are assigned to the passed tag:

polylineCollection.hide('tag1');
polylineCollection.hide(['tag1']);

Hide polylines that are assigned to the passed tags:

polylineCollection.hide(['tag1', 'tag2', 'anotherTag']);

hideAll

hideAll(): void

Hide all the polylines in the collection.

polylineCollection.hideAll();

highlight

highlight(tag: string|string[], highlightOptions?: PolylineOptions): void

Highlight the polylines that are assigned to the passed tag(s).

ParameterTypeRequiredDescription
tagsstring|string[]svg fileOne or more string tags. This allows you to pass multiple tags as strings to the method.
highlightOptionsPolylineOptionsThe polyline options to override the existing highlight polyline options.

If multiple tags are passed then any polyline that is assigned to one of the passed tags is highlighted. Multiple tags does not mean that a polyline has to be assigned to all of the passed tags.

If no tags are passed then nothing happens.

Highlight polylines that are assigned to the passed tag:

polylineCollection.highlight('tag1');
polylineCollection.highlight(['tag1']);

Highlight polylines that are assigned to the passed tags:

polylineCollection.highlight(['tag1', 'tag2', 'anotherTag']);

You can override the current highlight options by passing in the options parameter. This allows you to override one or more of the following options:

  • clickable
  • dashed
  • dashGap
  • icons
  • strokeColor
  • strokeOpacity
  • strokeWeight
  • zIndex

When the polyline is unhighlighted, the original options will be restored.

polylineCollection.highlight('tag1', {strokeColor: 'blue'});

highlightAll

highlightAll(): void

Highlight all the polylines in the collection.

polylineCollection.highlightAll();

isEmpty

isEmpty(): boolean

Return whether the collection has no polylines.

if (polylineCollection.isEmpty()) {
// There are no polylines in the collection
}

remove

remove(p: Polyline, tag?: string|string[]): void

Remove a polyline from the collection. Optionally only remove it from the passed tags.

ParameterTypeRequiredDescription
polylinePolylinesvg fileThe polyline object to remove.
tagsstring|string[]One or more string tags. This allows you to pass multiple tags as strings to the method.

Remove the polyline from all tags:

polylineCollection.remove(polyline);

Remove the polyline from one tag:

polylineCollection.remove(polyline, 'tag1');
polylineCollection.remove(polyline, ['tag1']);

Remove the polyline from multiple tag:

polylineCollection.remove(polyline, ['tag1', 'tag2', 'anotherTag', 'andAnotherTag']);

setOptions

setOptions(options: PolylineOptions, tag?: string|string[]): void

Set options for either all polylines in the collection or for the polylines that have the tag(s) passed.

ParameterTypeRequiredDescription
optionsPolylineOptionssvg fileThe polyline options to set.
tagsstring|string[]One or more string tags. This allows you to pass multiple tags as strings to the method.

Set options on all polylines:

polylineCollection.setOptions({strokeColor: '#1b7fbb'});

Set options for one tag:

polylineCollection.setOptions({strokeColor: '#1b7fbb'}, 'tag1');
polylineCollection.setOptions({strokeColor: '#1b7fbb'}, ['tag1']);

Set options for multiple tag:

polylineCollection.setOptions({strokeColor: '#1b7fbb'}, ['tag1', 'tag2', 'anotherTag', 'andAnotherTag']);

show

tag: string|string[], map: Map

Show the polylines that are assigned to the passed tag(s).

ParameterTypeRequiredDescription
tagsstring|string[]svg fileOne or more string tags. This allows you to pass multiple tags as strings to the method.
mapMapThe map object

If multiple tags are passed then any polyline that is assigned to one of the passed tags is shown. Multiple tags does not mean that a polyline has to be assigned to all of the passed tags.

If you have not yet assigned the map value to the polyline then you should pass the map value. However, if you've already assigned the map value then you don't have to pass it.

If no tags are passed then nothing happens.

Show polylines that are assigned to the passed tag:

polylineCollection.show('tag1', map);
polylineCollection.show(['tag1'], ap);

Show polylines that are assigned to the passed tags:

polylineCollection.show(['tag1', 'tag2', 'anotherTag'], map);

showAll

showAll(map: Map): void

Show all the polylines in the collection.

ParameterTypeRequiredDescription
mapMapThe map object

If you have not yet assigned the map value to the polylines then you should pass the map value. However, if you've already assigned the map value then you don't have to pass it.

polylineCollection.showAll();
polylineCollection.showAll(map);

unhighlight

unhighlight(tag: string|string[]): void

Hide the highlight polylines that are assigned to the passed tag(s).

ParameterTypeRequiredDescription
tagsstring|string[]svg fileOne or more string tags. This allows you to pass multiple tags as strings to the method.

If multiple tags are passed then any polyline that is assigned to one of the passed tags is hidden. Multiple tags does not mean that a polyline has to be assigned to all of the passed tags.

If no tags are passed then nothing happens.

Hide the highlight polylines that are assigned to the passed tag:

polylineCollection.unhighlight('tag1');
polylineCollection.unhighlight(['tag1']);

Hide the highlight polylines that are assigned to the passed tags:

polylineCollection.unhighlight(['tag1', 'tag2', 'anotherTag']);

unhighlightAll

unhighlightAll(): void

Hide all the highlight polylines in the collection.

polylineCollection.unhighlightAll();