interface NeutrinoOptions {
    apiKey?: string;
    geocodingQueryParams?: Record<string, unknown>;
    reverseQueryParams?: Record<string, unknown>;
    serviceUrl: string;
    userId: string;
}

Hierarchy (View Summary)

Properties

apiKey?: string

API key to use this service

geocodingQueryParams?: Record<string, unknown>

Additional URL parameters (strings) that will be added to geocoding requests

reverseQueryParams?: Record<string, unknown>

Additional URL parameters (strings) that will be added to reverse geocoding requests

serviceUrl: string

URL of the service

userId: string