Skip to content

Instantly share code, notes, and snippets.

View trevor-coleman's full-sized avatar

Trevor Coleman trevor-coleman

View GitHub Profile
@trevor-coleman
trevor-coleman / geo-json.ts
Created November 10, 2020 15:36 — forked from codediodeio/geo-json.ts
A Typescript interface for GeoJSON objects based on rfc7946
export interface IGeometry {
type: string;
coordinates: number[];
}
export interface IGeoJson {
type: string;
geometry: IGeometry;
bbox?: number[];
properties?: any;