You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// A string representation of coordinate values separated by [delimiter]. /// /// Use [decimals] to set a number of decimals (not applied if no decimals). /// /// A sample with default parameters (for a 3D position): /// `10.1,20.3,30.3` /// /// To get WKT compatible text, set `delimiter` to ` `: /// `10.1 20.2 30.3`StringtoText({
String delimiter =',',
int? decimals,
});
/// Writes coordinate values of [position] to [buffer] separated by /// [delimiter]. /// /// Use [decimals] to set a number of decimals (not applied if no decimals). /// /// A sample with default parameters (for a 3D point): /// `10.1,20.3,30.3` /// /// To get WKT compatible text, set `delimiter` to ` `: /// `10.1 20.2 30.3`staticvoidwriteValues(
Position position,
StringSink buffer, {
String delimiter =',',
int? decimals,
});
Similar also for Box.
These were originally defined on the geocore package as valuesAsString and writeValues, but the first one is renamed to be more consistent with naming conventions of the geobase package.
The text was updated successfully, but these errors were encountered:
Planned methods for
Position
:Similar also for
Box
.These were originally defined on the
geocore
package asvaluesAsString
andwriteValues
, but the first one is renamed to be more consistent with naming conventions of thegeobase
package.The text was updated successfully, but these errors were encountered: