Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #90

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ Or use the minimized version :

You will need to pass the authentication information of your `AzureMaps` instance to the library. `SubscriptionKey`, `Aad` and `Anonymous` authentication are supported. You will need to call the `AddAzureMapsControl` method on your services.

#### Using a Subscription Key

You can authenticate using a `subscription key` :

```
Expand All @@ -49,6 +51,8 @@ You can authenticate using a `subscription key` :
}
```

#### Using Azure Active Directory

Or using `Azure Active Directory`:

```
Expand Down Expand Up @@ -129,8 +133,17 @@ It also needs to fetch the token to send to the requests of the atlas library. F
</script>
</body>
</html>

* End using Azure Active Directory part
```

## Running the Samples

1. Read the second half of [CONTRIBUTING](CONTRIBUTING) for details on getting the whole thing to build.
2. In appsettings.Development.json, enter your Azure Maps Subscription Key in AzureMaps:SubscriptionKey. The default is to use this, not the Entra keys.
3. It generally works well to create . .sln file in the root that has both the erc and samples as projects.
3. Set AzureMapsControl.Sample to have a Project Reference to AzureMapsControl.Component.

## How to use

- [Map](docs/map)
Expand Down