from taipy.gui import Gui
from taipy.designer import Page

point = {
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "geometry": {"type": "Point", "coordinates": [2.295, 48.8738]},
            "properties": {
                "comment": "click to display the contents of the properties object"
            },
        }
    ],
    "properties": {"description": "Arc de triomphe"},
}


page = Page("osm_geojson_point.xprjson")
Gui(page).run(design=True)
