UNPKG

@amicaldo/strapi-google-maps

Version:

A Google Maps custom field for Strapi, allowing you to pick a location.

18 lines (17 loc) 330 B
/** * The plugin's configuration content-type. */ export interface Config { id: number; googleMapsKey: string; defaultLatitude: string; defaultLongitude: string; } export interface Coordinates { lat: number; lng: number; } export interface Location { coordinates: Coordinates; geohash: string; }