Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 0 additions & 55 deletions docs/angular/src/content/en/components/nuget-feed.mdx

This file was deleted.

Binary file not shown.
Binary file not shown.
55 changes: 0 additions & 55 deletions docs/angular/src/content/jp/components/nuget-feed.mdx

This file was deleted.

Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,8 @@ protected override void OnInitialized()

Process shapes data loaded in <ApiLink type="ShapefileRecord" /> with of countries of the world and assign it to <ApiLink type="GeographicShapeSeries" /> object.

<PlatformBlock for="React">

```ts
import { IgrGeographicShapeSeries } from 'igniteui-react-maps';
import { IgrShapeDataSource } from 'igniteui-react-core';
Expand All @@ -369,6 +371,10 @@ public onPolygonsLoaded(sds: IgrShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="Angular">

```ts
import { IgxGeographicPolylineSeriesComponent } from 'igniteui-angular-maps';
import { IgxShapeDataSource } from 'igniteui-angular-core';
Expand All @@ -394,6 +400,10 @@ public onPolygonsLoaded(sds: IgxShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="WebComponents">

```ts
import { IgcGeographicShapeSeriesComponent } from 'igniteui-webcomponents-maps';
import { IgcShapeDataSource } from 'igniteui-webcomponents-core';
Expand All @@ -419,10 +429,14 @@ public onPolygonsLoaded(sds: IgcShapeDataSource, e: any) {
}
```

</PlatformBlock>

## Processing Polyline

Process shapes data loaded in <ApiLink type="ShapefileRecord" /> with communication routes between major cities and assign it to <ApiLink type="GeographicPolylineSeries" /> object.

<PlatformBlock for="React">

```ts
import { IgrGeographicPolylineSeries } from 'igniteui-react-maps';
import { IgrShapeDataSource } from 'igniteui-react-core';
Expand Down Expand Up @@ -450,6 +464,10 @@ public onPolylinesLoaded(sds: IgrShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="Angular">

```ts
import { IgxGeographicPolylineSeriesComponent } from 'igniteui-angular-maps';
import { IgxShapeDataSource } from 'igniteui-angular-core';
Expand Down Expand Up @@ -477,6 +495,10 @@ public onPolylinesLoaded(sds: IgxShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="WebComponents">

```ts
import { IgcGeographicPolylineSeriesComponent } from 'igniteui-webcomponents-maps';
import { IgcShapeDataSource } from 'igniteui-webcomponents-core';
Expand Down Expand Up @@ -506,10 +528,14 @@ public onPolylinesLoaded(sds: IgcShapeDataSource, e: any) {
}
```

</PlatformBlock>

## Processing Points

Process shapes data loaded in <ApiLink type="ShapefileRecord" /> with locations of major cities and assign it to <ApiLink type="GeographicSymbolSeries" /> object.

<PlatformBlock for="React">

```ts
import { IgrGeographicSymbolSeries } from 'igniteui-react-maps';
import { MarkerType } from 'igniteui-react-charts';
Expand Down Expand Up @@ -537,6 +563,10 @@ public onPointsLoaded(sds: IgrShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="Angular">

```ts
import { IgxGeographicSymbolSeriesComponent } from 'igniteui-angular-maps';
import { IgxShapeDataSource } from 'igniteui-angular-core';
Expand Down Expand Up @@ -564,6 +594,10 @@ public onPointsLoaded(sds: IgxShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="WebComponents">

```ts
import { IgcGeographicSymbolSeriesComponent } from 'igniteui-webcomponents-maps';
import { IgcShapeDataSource } from 'igniteui-webcomponents-core';
Expand Down Expand Up @@ -592,6 +626,8 @@ public onPointsLoaded(sds: IgcShapeDataSource, e: any) {
}
```

</PlatformBlock>


</PlatformBlock>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,8 @@ protected override void OnInitialized()

世界の国々の <ApiLink type="ShapefileRecord" /> に読み込まれた形状データを処理し、<ApiLink type="GeographicShapeSeries" /> オブジェクトに割り当てます。

<PlatformBlock for="React">

```ts
import { IgrGeographicShapeSeries } from 'igniteui-react-maps';
import { IgrShapeDataSource } from 'igniteui-react-core';
Expand All @@ -371,6 +373,10 @@ public onPolygonsLoaded(sds: IgrShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="Angular">

```ts
import { IgxGeographicPolylineSeriesComponent } from 'igniteui-angular-maps';
import { IgxShapeDataSource } from 'igniteui-angular-core';
Expand All @@ -396,6 +402,10 @@ public onPolygonsLoaded(sds: IgxShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="WebComponents">

```ts
import { IgcGeographicShapeSeriesComponent } from 'igniteui-webcomponents-maps';
import { IgcShapeDataSource } from 'igniteui-webcomponents-core';
Expand All @@ -421,10 +431,14 @@ public onPolygonsLoaded(sds: IgcShapeDataSource, e: any) {
}
```

</PlatformBlock>

## ポリラインの処理

<ApiLink type="ShapefileRecord" /> に読み込まれた形状データを処理し、主要都市間の通信ルートを使用して、<ApiLink type="GeographicPolylineSeries" /> オブジェクトに割り当てます。

<PlatformBlock for="React">

```ts
import { IgrGeographicPolylineSeries } from 'igniteui-react-maps';
import { IgrShapeDataSource } from 'igniteui-react-core';
Expand Down Expand Up @@ -452,6 +466,10 @@ public onPolylinesLoaded(sds: IgrShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="Angular">

```ts
import { IgxGeographicPolylineSeriesComponent } from 'igniteui-angular-maps';
import { IgxShapeDataSource } from 'igniteui-angular-core';
Expand Down Expand Up @@ -479,6 +497,10 @@ public onPolylinesLoaded(sds: IgxShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="WebComponents">

```ts
import { IgcGeographicPolylineSeriesComponent } from 'igniteui-webcomponents-maps';
import { IgcShapeDataSource } from 'igniteui-webcomponents-core';
Expand Down Expand Up @@ -508,10 +530,14 @@ public onPolylinesLoaded(sds: IgcShapeDataSource, e: any) {
}
```

</PlatformBlock>

## ポイントの処理

<ApiLink type="ShapefileRecord" /> に読み込まれた世界各国の形状データを処理し、<ApiLink type="GeographicSymbolSeries" /> オブジェクトに割り当てます。

<PlatformBlock for="React">

```ts
import { IgrGeographicSymbolSeries } from 'igniteui-react-maps';
import { MarkerType } from 'igniteui-react-charts';
Expand Down Expand Up @@ -539,6 +565,10 @@ public onPointsLoaded(sds: IgrShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="Angular">

```ts
import { IgxGeographicSymbolSeriesComponent } from 'igniteui-angular-maps';
import { IgxShapeDataSource } from 'igniteui-angular-core';
Expand Down Expand Up @@ -566,6 +596,10 @@ public onPointsLoaded(sds: IgxShapeDataSource, e: any) {
}
```

</PlatformBlock>

<PlatformBlock for="WebComponents">

```ts
import { IgcGeographicSymbolSeriesComponent } from 'igniteui-webcomponents-maps';
import { IgcShapeDataSource } from 'igniteui-webcomponents-core';
Expand Down Expand Up @@ -594,6 +628,8 @@ public onPointsLoaded(sds: IgcShapeDataSource, e: any) {
}
```

</PlatformBlock>


</PlatformBlock>

Expand Down
Loading