export async function fetchAnnotationFeatures()

in src/atoms/default/stores/annotations.js [8:15]


export async function fetchAnnotationFeatures() {
  const geoJson = await fetchJSON("__assetsPath__/geojson/annotations.geojson")
  annotationFeatures.set({
    beitHanoun: geoJson.features.filter(f => f.properties.area === "beit-hanoun"),
    alZahra: geoJson.features.filter(f => f.properties.area === "al-zahra"),
    khanYounis: geoJson.features.filter(f => f.properties.area === "khan-younis"),
  });
}