Select to view content in your preferred language

Calcite Design with ArcGIS SDK for Javascript in Angular 16

162
1
10-28-2024 03:05 PM
Labels (1)
Carlos_Estrella
New Contributor

Hello,
I am working with:
Calcite Design System, ArcGIS SDK for Javascript and Angular 16

I try to work with different components through the App-component using the following code:

  <calcite-loader></calcite-loader>
  <calcite-shell >

  <calcite-shell-panel slot="panel-start"  layout="vertical"  id="shell-panel-start" display-mode="dock">
    <app-left-bar></app-left-bar>
  </calcite-shell-panel>

  <div style="height: 100%; width: 100%;">
    <app-maps></app-maps>
  </div>

</calcite-shell>
 

I specify that:
<app-left-bar></app-left-bar>
<app-maps></app-maps>

It is correctly configured.

Is there any documentation that helps me with the development of my project and how to work with the components?

Thanks

0 Kudos
1 Reply
DarwinSegura
Emerging Contributor

Calcite system not exist documentation specific with angular, but if you know the component that posible implement all the tool the calcite how to usually a component in angular. In document .html but call for #id in your document .ts with @Viewchild or @viewchildren, and that form called all the componente calcient exist in your .html

 

0 Kudos