For convenience. Updates a subset of positions and/or text in a text batch using Cartographic positions. Longitude and latitude are in radians, and altitude is in meters. This is equivalent to converting each position in positions to Cartesian and calling Set Partial.
[Visual Basic .NET] |
---|
Public Sub SetPartialCartographicWithIndicesOrder( _ ByVal CentralBody As String, _ ByVal Positions As System.Array, _ ByVal Text As System.Array, _ ByVal Indices As System.Array, _ ByVal IndicesOrderHint As AgEStkGraphicsIndicesOrderHint _ ) As |
[C#] |
---|
public void SetPartialCartographicWithIndicesOrder( string CentralBody, System.Array Positions, System.Array Text, System.Array Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint ); |
[Managed C++] |
---|
public: void SetPartialCartographicWithIndicesOrder( String __gc ^ CentralBody, System::Array ^ Positions, System::Array ^ Text, System::Array ^ Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint ); |
[Java] |
---|
public void setPartialCartographicWithIndicesOrder( String CentralBody, VariantArray Positions, VariantArray Text, VariantArray Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint ); |
[Unmanaged C++] |
---|
public: HRESULT SetPartialCartographicWithIndicesOrder( BSTR CentralBody, SAFEARRAY * * Positions, SAFEARRAY * * Text, SAFEARRAY * * Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint ); |
- CentralBody
- The central body the positions are defined on.
- Positions
- An array containing new positions used to update a subset of positions in the text batch, provided in the order latitude, longitude, altitude.
- Text
- A collection of new text used to update a subset of text in the text batch.
- Indices
- An array of integers containing the indices into positions. A set of latitude, longitude, and altitude elements is considered a single index.
- IndicesOrderHint
See Set Partial for a full discussion.
Shows the format of the Text, Positions, Colors and Indices parameters when updating a text batch primitive with cartographic positions.
[C#] | ||
---|---|---|
|
Shows the format of the Text, Positions, Colors and Indices parameters when updating a text batch primitive with cartographic positions.
[Visual Basic .NET] | ||
---|---|---|
|