From faf40c6b24dd1eb5a294bf8c93003eb6f77f8bd1 Mon Sep 17 00:00:00 2001 From: "Jeffrey M. Press" Date: Tue, 11 Oct 2022 12:33:41 -0700 Subject: [PATCH 1/2] Update 07-reusable-components.md --- src/markdown/tutorial/part-1/07-reusable-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown/tutorial/part-1/07-reusable-components.md b/src/markdown/tutorial/part-1/07-reusable-components.md index 474a29b..0440c02 100644 --- a/src/markdown/tutorial/part-1/07-reusable-components.md +++ b/src/markdown/tutorial/part-1/07-reusable-components.md @@ -16,7 +16,7 @@ While adding the map, you will learn about: ## Managing Application-level Configurations -We will use the [Mapbox](https://www.mapbox.com) API to generate maps for our rental properties. You can [sign up](https://www.mapbox.com/signup/) for free and without a credit card. +We will use the [Mapbox](https://www.mapbox.com) API to generate maps for our rental properties. You can [sign up](https://www.mapbox.com/signup/) for free. The signup process does require a credit card, but the expected usage for this project should be well under the threshold for any charges to be incurred. Mapbox provides a [static map images API](https://docs.mapbox.com/api/maps/#static-images), which serves map images in PNG format. This means that we can generate the appropriate URL for the parameters we want and render the map using a standard `` tag. Pretty neat! From c7703177ada0965231bd0b661f357b390b4efaf2 Mon Sep 17 00:00:00 2001 From: Anne-Greeth Schot-van Herwijnen Date: Wed, 12 Oct 2022 14:05:05 +0200 Subject: [PATCH 2/2] Update src/markdown/tutorial/part-1/07-reusable-components.md --- src/markdown/tutorial/part-1/07-reusable-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown/tutorial/part-1/07-reusable-components.md b/src/markdown/tutorial/part-1/07-reusable-components.md index 0440c02..3e5c604 100644 --- a/src/markdown/tutorial/part-1/07-reusable-components.md +++ b/src/markdown/tutorial/part-1/07-reusable-components.md @@ -16,7 +16,7 @@ While adding the map, you will learn about: ## Managing Application-level Configurations -We will use the [Mapbox](https://www.mapbox.com) API to generate maps for our rental properties. You can [sign up](https://www.mapbox.com/signup/) for free. The signup process does require a credit card, but the expected usage for this project should be well under the threshold for any charges to be incurred. +We will use the [Mapbox](https://www.mapbox.com) API to generate maps for our rental properties. You can [sign up](https://www.mapbox.com/signup/) for free. The sign up process does require a credit card, but the expected usage for this project should be well under the threshold for any charges to be incurred. Mapbox provides a [static map images API](https://docs.mapbox.com/api/maps/#static-images), which serves map images in PNG format. This means that we can generate the appropriate URL for the parameters we want and render the map using a standard `` tag. Pretty neat!