Skip to content

Maui App to present data from National Park Service API

License

Notifications You must be signed in to change notification settings

RodBarnes/NationalParks

Repository files navigation

National Parks

A National Parks app to list the parks, campgrounds, activities, etc. provide by the NPS API.

NOTE on the API Key

The app relies upon data from the National Park Service (NPS) via its API and use of the API requires obtaining an API Key from https://www.nps.gov/subjects/developer/get-started.htm.

For security purposes, an API Key is not included in this repository. You must obtain your own if building or forking this code.

After cloning the repository, create a Config.cs file in the local project root folder that contains the code (below) and insert your API Key in place of the token "YOUR_API_KEY". This file is set as ignored in the .gitignore and will not be pushed to the repository.

namespace NationalParks
{
    public static class Config
    {
        public static string NpsApiKey { get => "YOUR_API_KEY"; }
    }
}

About

Maui App to present data from National Park Service API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages