File

projects/angular-cesium/src/lib/angular-cesium/components/ac-polyline/ac-polyline.component.ts

Description

This is a polyline implementation. The ac-label element must be a child of ac-map element. The properties of props are the same as the properties of Polyline Primitive:

Usage:

 *  <ac-polyline [props]="{
 *    position: position,
 *    text: 'labelText',
 *    font: '30px sans-serif'
 *    color: Cesium.Color.GREEN
 *  }">;
 *  </ac-polyline>
 *

Extends

EntityOnMapComponent

Metadata

selector ac-polyline

Constructor

constructor(polylineDrawer: PolylineDrawerService, mapLayers: MapLayersService)
Parameters :
Name Type Optional
polylineDrawer PolylineDrawerService No
mapLayers MapLayersService No
import { Component } from '@angular/core';
import { EntityOnMapComponent } from '../../services/entity-on-map/entity-on-map.component';
import { MapLayersService } from '../../services/map-layers/map-layers.service';
import { PolylineDrawerService } from '../../services/drawers/polyline-drawer/polyline-drawer.service';

/**
 *  This is a polyline implementation.
 *  The ac-label element must be a child of ac-map element.
 *  The properties of props are the same as the properties of Polyline Primitive:
 *  + https://cesiumjs.org/Cesium/Build/Documentation/Polyline.html
 *
 *  __Usage:__
 *  ```
 *  <ac-polyline [props]="{
 *    position: position,
 *    text: 'labelText',
 *    font: '30px sans-serif'
 *    color: Cesium.Color.GREEN
 *  }">;
 *  </ac-polyline>
 *  ```
 */

@Component({
  selector: 'ac-polyline',
  template: '',
})
export class AcPolylineComponent extends EntityOnMapComponent {

  constructor(polylineDrawer: PolylineDrawerService, mapLayers: MapLayersService) {
    super(polylineDrawer, mapLayers);
  }
}
Legend
Html element
Component
Html element with directive

result-matching ""

    No results matching ""