1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { fetchJSON } from "https://esm.town/v/stevekrouse/fetchJSON?v=41";
interface APIResponse {
type: string;
crs: unknown;
features: unknown[];
}
export async function getTelAvivMobilitySpots() {
// const url =
// "https://gisn.tel-aviv.gov.il/arcgis/rest/services/IView2/MapServer/860/query?where=1=1&outFields=*&f=geojson";
const url = "https://app.digital4grids.com/api";
const json_data = await fetchJSON(url);
return { "json_data": [] };
}