Skip to content

Commit

Permalink
Update link to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
abstractalgo committed Jun 11, 2024
1 parent b650e0e commit cfab4ea
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
3 changes: 3 additions & 0 deletions typescript-examples/annotations-example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ export const App: FC = () => {
useEffect(() => {
const initMap = async () => {
const map = await createMap({
// This is an API Key that only works for these examples.
// Provide your own Map SDK API Key instead.
// For more details, see: https://docs.foursquare.com/developer/docs/studio-map-sdk-authentication
apiKey: "fsq3CYDP77ybwoo1KtkJigGRj6g0uYyhWVw25jM+zN6ovbI=",
container: containerRef.current!,
});
Expand Down
3 changes: 3 additions & 0 deletions typescript-examples/basic-example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ export const App: FC = () => {
useEffect(() => {
const initMap = async () => {
const map = await createMap({
// This is an API Key that only works for these examples.
// Provide your own Map SDK API Key instead.
// For more details, see: https://docs.foursquare.com/developer/docs/studio-map-sdk-authentication
apiKey: "fsq3CYDP77ybwoo1KtkJigGRj6g0uYyhWVw25jM+zN6ovbI=",
container: containerRef.current!,
});
Expand Down
5 changes: 4 additions & 1 deletion typescript-examples/data-example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ export const App: FC = () => {

const initMap = async () => {
const map = await createMap({
apiKey: "fsq3xmchm2MR7alFdHFopcPvLY3QvY2A1CnyIYEqxJ1Mdy8=",
// This is an API Key that only works for these examples.
// Provide your own Map SDK API Key instead.
// For more details, see: https://docs.foursquare.com/developer/docs/studio-map-sdk-authentication
apiKey: "fsq3CYDP77ybwoo1KtkJigGRj6g0uYyhWVw25jM+zN6ovbI=",
container: containerRef.current!,
});

Expand Down
3 changes: 3 additions & 0 deletions typescript-examples/effects-example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ export const App: FC = () => {

const initMap = async () => {
const map = await createMap({
// This is an API Key that only works for these examples.
// Provide your own Map SDK API Key instead.
// For more details, see: https://docs.foursquare.com/developer/docs/studio-map-sdk-authentication
apiKey: "fsq3CYDP77ybwoo1KtkJigGRj6g0uYyhWVw25jM+zN6ovbI=",
container: containerRef.current!,
});
Expand Down

0 comments on commit cfab4ea

Please sign in to comment.