I am importing a point featureclass, layer which are non-earth (e.g. local project coordinates)
How would i create a map with non-earth coord system ?
currently i'm using :
Map map = null;
await QueuedTask.Run(() =>
{
map = MapFactory.Instance.CreateMap(mapName, MapType.Map, MapViewingMode.Map, Basemap.None);
});
await ProApp.Panes.CreateMapPaneAsync(map);