UNPKG

google-maps-drawing-tools

Version:
9 lines (8 loc) 262 B
/// <reference types="googlemaps" /> export interface CreateCircleOptions { lat: number; lng: number; radius: number; points?: number; } export default function createCircle({lat, lng, radius, points}: CreateCircleOptions): google.maps.LatLng[];