Sitemap

Member-only story

Flutter Flow: Map Custom Markers using Custom Data Types and Action Blocks

8 min readSep 18, 2024

--

Flutter Flow continues to develop and improve its platform.

My first article with custom markers we used custom data types with data from App State.

With the the introduction of Document and Supabase parameters, I changed it to allow you to first query places, without customizing the code.

Now it’s even easier and we are going back to Custom data types to make it more flexible to use with any backend service.

There are also minor cleanup and improved functionality.

I have also now added this feature to the UI template on the Flutter Flow marketplace:

https://marketplace.flutterflow.io/item/u7b1BfYoid8m5ruvjzYc

Creating our custom Data Types

Press enter or click to view image in full size

We are creating a few custom data types. Feel free to change them based on your specific needs

  • latitude: Our latitude coordinate
  • longitude: Our longitude coordinate
  • title: This is what shows on the popup when a marker is clicked
  • description: This shows under the title on the popup when the marker is clicked.
  • image_url: This is the image path of the custom…

--

--