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 SetPartialCartographic( _ ByVal CentralBody As String, _ ByVal Positions As System.Array, _ ByVal Text As System.Array, _ ByVal Indices As System.Array _ ) As |
[C#] |
---|
public void SetPartialCartographic( string CentralBody, System.Array Positions, System.Array Text, System.Array Indices ); |
[Managed C++] |
---|
public: void SetPartialCartographic( String __gc ^ CentralBody, System::Array ^ Positions, System::Array ^ Text, System::Array ^ Indices ); |
[Java] |
---|
public void setPartialCartographic( String CentralBody, VariantArray Positions, VariantArray Text, VariantArray Indices ); |
[Unmanaged C++] |
---|
public: HRESULT SetPartialCartographic( BSTR CentralBody, SAFEARRAY * * Positions, SAFEARRAY * * Text, SAFEARRAY * * Indices ); |
- 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.
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] | ||
---|---|---|
|