I love the maps component, but I have a problem with it, the cost. I have a map with 100 pins, everytime a user loads this map it uses 100 geo location API calls! How can I prevent this from happening? I already tried to only use coordinates, but that didn’t seem to work.
I should only need the geo location API once, after a user creates a new location based on a address to switch it to coordinates, not everytime!
I’m not sure I am qualified enough on this subject to make recommendations. My understanding of it is that it would need to make those requests everytime to the API to “draw” the pins on the map.
I’m not sure of the technical workaround for this, other than some form of caching, which again, goes beyond my technical capabilities.
If you have an example of how other apps (outside of Adalo of coursE) that do this, so we could make a comparison, it would help a lot.
Well, since I pull my pins from the database which stores coordinates I do not really need the geo API to calculate coordinates. That is only needed if you have addresses stored in your database, instead of coordinates. (Atleast as far as I understand)
It would be nice if the geo API can be turned off for people who store coordinates.