HCoord.fromString constructor

HCoord.fromString(
  1. String s
)

Parse from string fomat "C(lat,lng)" or raise ParseException

Implementation

factory HCoord.fromString(String s) {
  return HZincReader(s).readVal() as HCoord;
}