
Announcements
ClearCollect(
ShapeNew,
{
type:"Feature",
properties:"",
geometry:{
coordinates:
ForAll(BAHRO, {long:ThisRecord.Longitude, lat:ThisRecord.Latitude}
)
,
type:"Polygone"
}
});
ClearCollect(GrupByLabel,GroupBy(ShapeNew,type,GrupType));
Set(varJSON,JSON(GrupByLabel,JSONFormat.Compact))
ClearCollect(
ShapeNew,
{
type:"Feature",
properties:"",
geometry:{
coordinates:
ForAll(BAHRO, ThisRecord.Longitude &", "& ThisRecord.Latitude)
,
type:"Polygone"
}
});
ClearCollect(GrupByLabel,GroupBy(ShapeNew,type,GrupType));
Set(varJSON,JSON(GrupByLabel,JSONFormat.Compact))
If this solved your problem, please mark it as Solved to help others find the solution faster.
If you found it helpful, consider giving it a Like to support each other in this community!
Thanks, and happy building!