read-gedcom
Version:
Gedcom file reader
14 lines • 553 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SelectionCoordinates = void 0;
const internal_1 = require("./internal");
class SelectionCoordinates extends internal_1.SelectionAny {
getLatitude() {
return this.get("LATI" /* Tag.Latitude */, null, internal_1.SelectionLatitude);
}
getLongitude() {
return this.get("LONG" /* Tag.Longitude */, null, internal_1.SelectionLongitude);
}
}
exports.SelectionCoordinates = SelectionCoordinates;
//# sourceMappingURL=SelectionCoordinates.js.map