Draw object layer
Revision as of 14:01, 2 April 2025 by Ths (talk | contribs) (Created page with "This page details the setup of the Maria DrawObjectLayer. == Example == <source lang="c#"> _drawObjectSystemFactory = new DrawObjectSystemFactory(_symbolRequestProcessor); _drawObjectCommon = _drawObjectSystemFactory.CommonResources; _drawObjectCommon.GeoObjectClientStores.ConnectToService(new Uri("http://localhost:5097")); var storeInfo = new StoreInfo() { Id = "InMemory", IsInProcessStore = true };...")
This page details the setup of the Maria DrawObjectLayer.
Example
<source lang="c#">
_drawObjectSystemFactory = new DrawObjectSystemFactory(_symbolRequestProcessor); _drawObjectCommon = _drawObjectSystemFactory.CommonResources; _drawObjectCommon.GeoObjectClientStores.ConnectToService(new Uri("http://localhost:5097")); var storeInfo = new StoreInfo() { Id = "InMemory", IsInProcessStore = true }; _drawObjectLayer = _drawObjectSystemFactory.CreateLayer(GeoControlViewModel, storeInfo);