> For the complete documentation index, see [llms.txt](https://bryan-guner.gitbook.io/my-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bryan-guner.gitbook.io/my-docs/lambda-labs/standup-notes/meeting-notes/9-29-2021.md).

# 9/29/2021

**9-29-2021**\\

***

***

**Learn ANT design - Frontend and UI/UX**

**Backend - Going over endpoints and caching**\\

***

**Meeting at 1 pm lambda time talk about technical objectives**\\

***

**Friday - github setup**\
\*\*\*\*\
\*\*\*\*\\

***

\*\*9-29-2021 \*\*

**Notes from call with Ryan Hamblin -**\\

***

**Map - Ant Design**\\

***

**Frontend:**

**Any changes to data gets a redraw of map markers**\\

***

**Backend:**\\

***

**Shape of data presenting exactly the way the front end needs it to speed up frontend load and streamline delivery**

**Pass Latitude and Longitude to front-end**\
\*\*\*\*\\

***

**React Map GL - github.com/visgl/react-map-gl**

**Map Plan - mapbox.com/blog/mapbox-gl-js-react**

**Zoom is important and rerender/react to zoom change**\\

***

**Const { long, lat } = map.getCenter() - centers markers on screen**\\

***

**Example:**\\

***

**import \* as React from 'react';**

**import ReactMapGL from 'react-map-gl';**\\

***

**function Map() {**

\*\* const \[viewport, setViewport] = React.useState({\*\*

\*\* latitude: 37.7577,\*\*

\*\* longitude: -122.4376,\*\*

\*\* zoom: 8\*\*

\*\* });\*\*\\

***

\*\* return (\*\*

\*\* \<ReactMapGL\*\*

\*\* {...viewport}\*\*

\*\* width="100%"\*\*

\*\* height="100%"\*\*

\*\* onViewportChange={(viewport) => setViewport(viewport)}\*\*

\*\* />\*\*

\*\* );\*\*

**}**\
\*\*\*\*\\

***

[**https://visgl.github.io/react-map-gl/docs**](https://visgl.github.io/react-map-gl/docs)\*\*\*\*\\

***

**<https://codesandbox.io/s/eager-fast-p3bfw>**

**<https://codesandbox.io/s/competent-ride-cxn8e>**

\*\*This one is closer to what we're doing... <https://codesandbox.io/s/boat-ramps-forked-6rs9p**\\>
\*\*\*\*\
\*\*\*\*\\

***

**Setup JSON sandbox to begin features**\
\*\*\*\*\\

***

**Frontend**

\*\*\<Marker \*\*

**key={dot.program}**

**longitude={dot.longitude}**

**latitude={dot.latitude}**

**>**\\

***

**\<img src={yellowPing} />**

**\</Marker>**\
\*\*\*\*\
\*\*\*\*\\

***

**Backend:**

**Database - latitude | longitude | service type | different color marker for each component | map clusters | function to return string - take in program type like .map - for eahc service type program - give only data that frontend needs**\\

***

**.map(service => \<Marker style = {stylingFunc(service.programType) => “”} />**\
\*\*\*\*\\

***

**stylingFunc(programType => {**

**if(type1) => style1**

**if(type2) => style2**

**if(type3) => style3**

**})**\
\*\*\*\*\\

***

**onUpdate | Restful architecture with react**

**PUT - full rest - update the app, update the truth data set - go to state - Storage**

**Rerender map after address input in search**

**Return new entire data set**

**Resets markers to reprint map - setup in state to trigger rerender**\
\*\*\*\*\\

***

**Swagger Docs**

\*\*<http://family-promise-dev.us-east-1.elasticbeanstalk.com/**\\\\>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://bryan-guner.gitbook.io/my-docs/lambda-labs/standup-notes/meeting-notes/9-29-2021.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
