coordinateFormat static method

TextWriterFormat<CoordinateContent> coordinateFormat({
  1. GeoJsonConf? conf,
})

The GeoJSON text format (encoding only) for coordinate objects with optional conf.

Implementation

static TextWriterFormat<CoordinateContent> coordinateFormat({
  GeoJsonConf? conf,
}) =>
    TextWriterFormatImplConf(
      GeoJsonTextWriter.new,
      conf: conf,
    );