How can i use longitude and latitude with typeorm and postgres
My current entity looks like this: import { BaseEntity, Column, Entity, PrimaryGeneratedColumn } from 'typeorm'; @Entity() export class Landmark extends BaseEntity { @PrimaryGeneratedColumn('uuid') id: string; @Column() longitude: number @Column() latitude: number } But i wonder if there is a better way to do this, with a special postgres type, that works wi