Draw object layer

From Maria GDK Wiki
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 };...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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);