exiftool-vendored
Version:
Efficient, cross-platform access to ExifTool
10 lines • 683 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.GeolocationTagNames = void 0;
exports.isGeolocationTag = isGeolocationTag;
const StrEnum_1 = require("./StrEnum");
exports.GeolocationTagNames = (0, StrEnum_1.strEnum)("GeolocationBearing", "GeolocationCity", "GeolocationCountry", "GeolocationCountryCode", "GeolocationDistance", "GeolocationFeatureCode", "GeolocationFeatureType", "GeolocationPopulation", "GeolocationPosition", "GeolocationRegion", "GeolocationSubregion", "GeolocationTimeZone", "GeolocationWarning");
function isGeolocationTag(tag) {
return exports.GeolocationTagNames.has(tag);
}
//# sourceMappingURL=GeolocationTags.js.map
;