Skip to content

Commit 2f49f2c

Browse files
small fixes v3
1 parent a90cde7 commit 2f49f2c

File tree

2 files changed

+5
-5
lines changed
  • src/pages/[platform]/build-a-backend/add-aws-services/geo

2 files changed

+5
-5
lines changed

src/pages/[platform]/build-a-backend/add-aws-services/geo/set-up-geo/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ export function getStaticProps(context) {
2727
};
2828
}
2929

30-
In this guide, you will learn how to set up Geo in your Amplify app. You will set up your backend resources, manage their access, and integrate geo maps, place indices, and geofence collections within your application.
30+
In this guide, you will learn how to set up Geo in your Amplify project. You will set up your backend resources, manage their access, and integrate geo maps, place indices, and geofence collections within your application.
3131

32-
If you have not yet created an Amplify app, visit the [quickstart guide](/[platform]/start/quickstart/).
32+
If you have not yet created an Amplify project, visit the [quickstart guide](/[platform]/start/quickstart/).
3333

3434
Amazon Location Services now offers independent APIs and UI components for maps and location search for your web apps, eliminating the need to provision these resources. You can add maps, location search (place index), and geofencing functionality to your app in just a few lines of code. Learn more about these resources [here](https://docs.aws.amazon.com/location/latest/developerguide/what-is.html).
3535

3636
## Building your Geo backend
3737

38-
First, create a file `amplify/geo/resource.ts` within your Amplify app. This file will be the location to configure your Geo backend resources. This entails managing access to maps and location search and provisioning geofence collections. For example, you can instantiate a geofence collection, place index, or a map resource by using the `defineMap`, `definePlace`, or `defineCollection` functions and providing a `name` for these resources.
38+
First, create a file `amplify/geo/resource.ts` within your Amplify project. This file will be the location to configure your Geo backend resources. This entails managing access to maps and location search and provisioning geofence collections. For example, you can instantiate a geofence collection, place index, or a map resource by using the `defineMap`, `definePlace`, or `defineCollection` functions and providing a `name` for these resources.
3939

4040
```ts title="amplify/geo/resource.ts"
4141
import {
@@ -107,7 +107,7 @@ npx ampx sandbox --outputs-format dart --outputs-out-dir lib
107107

108108
</InlineFilter>
109109

110-
This command will deploy a Geofence Collection to your cloud sandbox and generate access policies to integrate the map and location search resources with your Amplify app.
110+
This command will deploy a Geofence Collection to your cloud sandbox and generate access policies to integrate the map and location search resources with your Amplify project.
111111

112112
## Define resource access permissions
113113

src/pages/[platform]/build-a-backend/add-aws-services/geo/use-legacy-resources/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { getCustomStaticPath } from '@/utils/getCustomStaticPath';
22

33
export const meta = {
4-
title: 'Use Legacy Geo Resources',
4+
title: 'Use legacy Geo resources',
55
description: 'AWS Amplify Geo module provides a simple way to get map data, search for places, and reverse geocoding.',
66
platforms: [
77
'javascript',

0 commit comments

Comments
 (0)