Skip to content

Commit ee195c8

Browse files
author
sramekpete
committed
Update docs for version 1.0
1 parent a02502d commit ee195c8

19 files changed

+11157
-0
lines changed

api-reference/temp/PolylineAlgorithm.Abstraction.AbstractPolylineDecoder-2.yml

Lines changed: 953 additions & 0 deletions
Large diffs are not rendered by default.

api-reference/temp/PolylineAlgorithm.Abstraction.AbstractPolylineEncoder-2.yml

Lines changed: 1022 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 209 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,209 @@
1+
### YamlMime:ManagedReference
2+
items:
3+
- uid: PolylineAlgorithm.Abstraction.IPolylineDecoder`2
4+
commentId: T:PolylineAlgorithm.Abstraction.IPolylineDecoder`2
5+
id: IPolylineDecoder`2
6+
parent: PolylineAlgorithm.Abstraction
7+
children:
8+
- PolylineAlgorithm.Abstraction.IPolylineDecoder`2.Decode(`0)
9+
langs:
10+
- csharp
11+
- vb
12+
name: IPolylineDecoder<TPolyline, TCoordinate>
13+
nameWithType: IPolylineDecoder<TPolyline, TCoordinate>
14+
fullName: PolylineAlgorithm.Abstraction.IPolylineDecoder<TPolyline, TCoordinate>
15+
type: Interface
16+
source:
17+
remote:
18+
path: src/PolylineAlgorithm/Abstraction/IPolylineDecoder.cs
19+
branch: develop/1.0
20+
repo: https://github.com/sramekpete/polyline-algorithm-csharp
21+
id: IPolylineDecoder
22+
path: ../src/PolylineAlgorithm/Abstraction/IPolylineDecoder.cs
23+
startLine: 12
24+
assemblies:
25+
- PolylineAlgorithm
26+
namespace: PolylineAlgorithm.Abstraction
27+
summary: Defines a contract for decoding an encoded polyline into a sequence of geographic coordinates.
28+
example: []
29+
syntax:
30+
content: public interface IPolylineDecoder<TPolyline, TCoordinate>
31+
typeParameters:
32+
- id: TPolyline
33+
- id: TCoordinate
34+
content.vb: Public Interface IPolylineDecoder(Of TPolyline, TCoordinate)
35+
nameWithType.vb: IPolylineDecoder(Of TPolyline, TCoordinate)
36+
fullName.vb: PolylineAlgorithm.Abstraction.IPolylineDecoder(Of TPolyline, TCoordinate)
37+
name.vb: IPolylineDecoder(Of TPolyline, TCoordinate)
38+
- uid: PolylineAlgorithm.Abstraction.IPolylineDecoder`2.Decode(`0)
39+
commentId: M:PolylineAlgorithm.Abstraction.IPolylineDecoder`2.Decode(`0)
40+
id: Decode(`0)
41+
parent: PolylineAlgorithm.Abstraction.IPolylineDecoder`2
42+
langs:
43+
- csharp
44+
- vb
45+
name: Decode(TPolyline)
46+
nameWithType: IPolylineDecoder<TPolyline, TCoordinate>.Decode(TPolyline)
47+
fullName: PolylineAlgorithm.Abstraction.IPolylineDecoder<TPolyline, TCoordinate>.Decode(TPolyline)
48+
type: Method
49+
source:
50+
remote:
51+
path: src/PolylineAlgorithm/Abstraction/IPolylineDecoder.cs
52+
branch: develop/1.0
53+
repo: https://github.com/sramekpete/polyline-algorithm-csharp
54+
id: Decode
55+
path: ../src/PolylineAlgorithm/Abstraction/IPolylineDecoder.cs
56+
startLine: 22
57+
assemblies:
58+
- PolylineAlgorithm
59+
namespace: PolylineAlgorithm.Abstraction
60+
summary: Decodes the specified encoded polyline into a sequence of geographic coordinates.
61+
example: []
62+
syntax:
63+
content: IEnumerable<TCoordinate> Decode(TPolyline polyline)
64+
parameters:
65+
- id: polyline
66+
type: '{TPolyline}'
67+
description: The <code class="typeparamref">TPolyline</code> instance containing the encoded polyline string to decode.
68+
return:
69+
type: System.Collections.Generic.IEnumerable{{TCoordinate}}
70+
description: An <xref href="System.Collections.Generic.IEnumerable%601" data-throw-if-not-resolved="false"></xref> of <code class="typeparamref">TCoordinate</code> representing the decoded latitude and longitude pairs.
71+
content.vb: Function Decode(polyline As TPolyline) As IEnumerable(Of TCoordinate)
72+
overload: PolylineAlgorithm.Abstraction.IPolylineDecoder`2.Decode*
73+
nameWithType.vb: IPolylineDecoder(Of TPolyline, TCoordinate).Decode(TPolyline)
74+
fullName.vb: PolylineAlgorithm.Abstraction.IPolylineDecoder(Of TPolyline, TCoordinate).Decode(TPolyline)
75+
references:
76+
- uid: PolylineAlgorithm.Abstraction
77+
commentId: N:PolylineAlgorithm.Abstraction
78+
href: PolylineAlgorithm.html
79+
name: PolylineAlgorithm.Abstraction
80+
nameWithType: PolylineAlgorithm.Abstraction
81+
fullName: PolylineAlgorithm.Abstraction
82+
spec.csharp:
83+
- uid: PolylineAlgorithm
84+
name: PolylineAlgorithm
85+
href: PolylineAlgorithm.html
86+
- name: .
87+
- uid: PolylineAlgorithm.Abstraction
88+
name: Abstraction
89+
href: PolylineAlgorithm.Abstraction.html
90+
spec.vb:
91+
- uid: PolylineAlgorithm
92+
name: PolylineAlgorithm
93+
href: PolylineAlgorithm.html
94+
- name: .
95+
- uid: PolylineAlgorithm.Abstraction
96+
name: Abstraction
97+
href: PolylineAlgorithm.Abstraction.html
98+
- uid: System.Collections.Generic.IEnumerable`1
99+
commentId: T:System.Collections.Generic.IEnumerable`1
100+
isExternal: true
101+
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
102+
name: IEnumerable<T>
103+
nameWithType: IEnumerable<T>
104+
fullName: System.Collections.Generic.IEnumerable<T>
105+
nameWithType.vb: IEnumerable(Of T)
106+
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
107+
name.vb: IEnumerable(Of T)
108+
spec.csharp:
109+
- uid: System.Collections.Generic.IEnumerable`1
110+
name: IEnumerable
111+
isExternal: true
112+
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
113+
- name: <
114+
- name: T
115+
- name: '>'
116+
spec.vb:
117+
- uid: System.Collections.Generic.IEnumerable`1
118+
name: IEnumerable
119+
isExternal: true
120+
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
121+
- name: (
122+
- name: Of
123+
- name: " "
124+
- name: T
125+
- name: )
126+
- uid: PolylineAlgorithm.Abstraction.IPolylineDecoder`2.Decode*
127+
commentId: Overload:PolylineAlgorithm.Abstraction.IPolylineDecoder`2.Decode
128+
href: PolylineAlgorithm.Abstraction.IPolylineDecoder-2.html#PolylineAlgorithm_Abstraction_IPolylineDecoder_2_Decode__0_
129+
name: Decode
130+
nameWithType: IPolylineDecoder<TPolyline, TCoordinate>.Decode
131+
fullName: PolylineAlgorithm.Abstraction.IPolylineDecoder<TPolyline, TCoordinate>.Decode
132+
nameWithType.vb: IPolylineDecoder(Of TPolyline, TCoordinate).Decode
133+
fullName.vb: PolylineAlgorithm.Abstraction.IPolylineDecoder(Of TPolyline, TCoordinate).Decode
134+
- uid: '{TPolyline}'
135+
commentId: '!:TPolyline'
136+
definition: TPolyline
137+
name: TPolyline
138+
nameWithType: TPolyline
139+
fullName: TPolyline
140+
- uid: System.Collections.Generic.IEnumerable{{TCoordinate}}
141+
commentId: T:System.Collections.Generic.IEnumerable{`1}
142+
parent: System.Collections.Generic
143+
definition: System.Collections.Generic.IEnumerable`1
144+
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
145+
name: IEnumerable<TCoordinate>
146+
nameWithType: IEnumerable<TCoordinate>
147+
fullName: System.Collections.Generic.IEnumerable<TCoordinate>
148+
nameWithType.vb: IEnumerable(Of TCoordinate)
149+
fullName.vb: System.Collections.Generic.IEnumerable(Of TCoordinate)
150+
name.vb: IEnumerable(Of TCoordinate)
151+
spec.csharp:
152+
- uid: System.Collections.Generic.IEnumerable`1
153+
name: IEnumerable
154+
isExternal: true
155+
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
156+
- name: <
157+
- name: TCoordinate
158+
- name: '>'
159+
spec.vb:
160+
- uid: System.Collections.Generic.IEnumerable`1
161+
name: IEnumerable
162+
isExternal: true
163+
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
164+
- name: (
165+
- name: Of
166+
- name: " "
167+
- name: TCoordinate
168+
- name: )
169+
- uid: TPolyline
170+
name: TPolyline
171+
nameWithType: TPolyline
172+
fullName: TPolyline
173+
- uid: System.Collections.Generic
174+
commentId: N:System.Collections.Generic
175+
isExternal: true
176+
href: https://learn.microsoft.com/dotnet/api/system
177+
name: System.Collections.Generic
178+
nameWithType: System.Collections.Generic
179+
fullName: System.Collections.Generic
180+
spec.csharp:
181+
- uid: System
182+
name: System
183+
isExternal: true
184+
href: https://learn.microsoft.com/dotnet/api/system
185+
- name: .
186+
- uid: System.Collections
187+
name: Collections
188+
isExternal: true
189+
href: https://learn.microsoft.com/dotnet/api/system.collections
190+
- name: .
191+
- uid: System.Collections.Generic
192+
name: Generic
193+
isExternal: true
194+
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
195+
spec.vb:
196+
- uid: System
197+
name: System
198+
isExternal: true
199+
href: https://learn.microsoft.com/dotnet/api/system
200+
- name: .
201+
- uid: System.Collections
202+
name: Collections
203+
isExternal: true
204+
href: https://learn.microsoft.com/dotnet/api/system.collections
205+
- name: .
206+
- uid: System.Collections.Generic
207+
name: Generic
208+
isExternal: true
209+
href: https://learn.microsoft.com/dotnet/api/system.collections.generic

0 commit comments

Comments
 (0)