Need some help caching tiles. #85
-
Hello, im building a very basic application with a map and my live location, im currently using mapbox as a static tile provider api. I noticed the map was reloading everytime i zoomed in or out causing my app to have a lot of gray squares. Searched up a little in the internet and found this really intresting plugin, read all the documentation but didn't really understand how to implement it in my app. I tried looking in the example on this repo but it's too complex for my case and there are no online guides. Can someone please help me figure this out? Would really help! Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey @clucch, I'm happy to help, but you'll need to make a start yourself. The example app isn't intended to be followed for new projects/implementations, it serves more as a reference on how you might implement surrounding/supporting features using the FMTC API. Start with https://fmtc.jaffaketchup.dev/get-started/basic-terminology, then head over to https://fmtc.jaffaketchup.dev/usage/initialisation. Please keep trying and let me know if you get stuck, so I can help with a more specific issue. |
Beta Was this translation helpful? Give feedback.
Hey @clucch, I'm happy to help, but you'll need to make a start yourself.
The example app isn't intended to be followed for new projects/implementations, it serves more as a reference on how you might implement surrounding/supporting features using the FMTC API.
Start with https://fmtc.jaffaketchup.dev/get-started/basic-terminology, then head over to https://fmtc.jaffaketchup.dev/usage/initialisation.
For basic usage, you can ignore most of Using Roots and Stores, although it's recommended to implement at least some simple Management for your users. You'll need to use https://fmtc.jaffaketchup.dev/usage/integration to connect FMTC to your map instance.
Please keep trying and let me know i…