projects/angular-cesium/src/lib/angular-cesium/components/ac-point/ac-point.component.ts
This is a point implementation. The ac-label element must be a child of ac-map element. The properties of props are the same as the properties of Entity and PointGraphics:
Usage:
Example :<ac-point [props]="{
position: position,
width: 3
}">
</ac-point>
selector | ac-point |
Properties |
|
Methods |
Inputs |
constructor(pointDrawer: PointDrawerService, mapLayers: MapLayersService)
|
|||||||||
Parameters :
|
props | |
Type : any
|
|
Inherited from
EntityOnMapComponent
|
|
Defined in
EntityOnMapComponent:11
|
drawOnMap |
drawOnMap()
|
Inherited from
EntityOnMapComponent
|
Defined in
EntityOnMapComponent:37
|
Returns :
any
|
ngOnChanges | ||||||
ngOnChanges(changes: SimpleChanges)
|
||||||
Inherited from
EntityOnMapComponent
|
||||||
Defined in
EntityOnMapComponent:30
|
||||||
Parameters :
Returns :
void
|
ngOnDestroy |
ngOnDestroy()
|
Inherited from
EntityOnMapComponent
|
Defined in
EntityOnMapComponent:53
|
Returns :
void
|
ngOnInit |
ngOnInit()
|
Inherited from
EntityOnMapComponent
|
Defined in
EntityOnMapComponent:20
|
Returns :
void
|
removeFromMap |
removeFromMap()
|
Inherited from
EntityOnMapComponent
|
Defined in
EntityOnMapComponent:42
|
Returns :
any
|
updateOnMap |
updateOnMap()
|
Inherited from
EntityOnMapComponent
|
Defined in
EntityOnMapComponent:47
|
Returns :
any
|
Protected dataSources |
Type : any
|
Inherited from
EntityOnMapComponent
|
Defined in
EntityOnMapComponent:15
|
Protected selfPrimitive |
Type : any
|
Inherited from
EntityOnMapComponent
|
Defined in
EntityOnMapComponent:13
|
Protected selfPrimitiveIsDraw |
Type : boolean
|
Inherited from
EntityOnMapComponent
|
Defined in
EntityOnMapComponent:14
|
import { Component } from '@angular/core';
import { EntityOnMapComponent } from '../../services/entity-on-map/entity-on-map.component';
import { PointDrawerService } from '../../services/drawers/point-drawer/point-drawer.service';
import { MapLayersService } from '../../services/map-layers/map-layers.service';
/**
* This is a point implementation.
* The ac-label element must be a child of ac-map element.
* The properties of props are the same as the properties of Entity and PointGraphics:
* + https://cesiumjs.org/Cesium/Build/Documentation/Entity.html
* + https://cesiumjs.org/Cesium/Build/Documentation/PointGraphics.html
*
* __Usage:__
* ```
* <ac-point [props]="{
* position: position,
* width: 3
* }">
* </ac-point>
* ```
*/
@Component({
selector: 'ac-point',
template: '',
standalone: false
})
export class AcPointComponent extends EntityOnMapComponent {
constructor(pointDrawer: PointDrawerService, mapLayers: MapLayersService) {
super(pointDrawer, mapLayers);
}
}