Search found 28 matches

by webdirekt
Thu Feb 15, 2018 6:00 am
Forum: PTV xServer.NET (Admin=OH)
Topic: Display only outside border of active region.
Replies: 13
Views: 18627

Re: Display only outside border of active region.

Thanks for the reply. We have used the NetTopologuSuit and GeoAPI & created a union geometry and saved union geometry binary in flat file. Later, we are using the flat file to read geometry data in display region in Map. Currently it takes 3 to 4 to read geometry data file and display union geom...
by webdirekt
Mon Feb 12, 2018 12:54 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Display only outside border of active region.
Replies: 13
Views: 18627

Re: Display only outside border of active region.

We are currently working on Wpf standalone application, how can we use topology functionality in Wpf application ?
by webdirekt
Mon Feb 12, 2018 12:26 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Display only outside border of active region.
Replies: 13
Views: 18627

Re: Display only outside border of active region.

Thanks for quick reply, We have now used following code : NetTopologySuite.Operation.Union.CascadedPolygonUnion geometryUnion1 = new NetTopologySuite.Operation.Union.CascadedPolygonUnion(geometryList.ToArray()); GeoAPI.Geometries.IGeometry geometryCollection = geometryFactory.CreateGeometryCollectio...
by webdirekt
Mon Feb 12, 2018 11:49 am
Forum: PTV xServer.NET (Admin=OH)
Topic: Display only outside border of active region.
Replies: 13
Views: 18627

Re: Display only outside border of active region.

Thank you for the solution which you have provided, it partially works for us, but we have large number of geometry data that is appox. 1200 geometries, so it is taking time to union all the geometries. We have used below code : GeoAPI.Geometries.IGeometry geometryCollection = geometryFactory.Create...
by webdirekt
Fri Feb 02, 2018 5:49 am
Forum: PTV xServer.NET (Admin=OH)
Topic: Display only outside border of active region.
Replies: 13
Views: 18627

Display only outside border of active region.

We have one use case of displaying the Active Region on Map. We provide geometry data to Map using SharpMap.Styles.VectorStyle.EnableOutline = true for display geometry for an Active Region. We have used the ITiledProvider to convert binary geometry data into the Image. The code is as follows for IT...
by webdirekt
Wed Aug 30, 2017 2:48 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Alternate solution to implement use case "Map and Market".
Replies: 1
Views: 7612

Alternate solution to implement use case "Map and Market".

Use case : Displaying the active region for medical experts using the use case of "Map & Market" of Demo Center. 1. We have table in access database to store the zip code details with following fields. ZipCode (type : Double) XMIN (type : Double) YMIN (type : Double) XMAX (type : Doubl...
by webdirekt
Tue Aug 22, 2017 9:50 am
Forum: PTV xServer.NET (Admin=OH)
Topic: How to add the large number of icons in map at once?
Replies: 4
Views: 8112

Re: How to add the large number of icons in map at once?

Hi Bernd, we can not use clustering in our scenario, is there any alternate solution ?
by webdirekt
Tue Aug 22, 2017 8:57 am
Forum: PTV xServer.NET (Admin=OH)
Topic: How to add the large number of icons in map at once?
Replies: 4
Views: 8112

How to add the large number of icons in map at once?

Code snippet : --------------------------------------------------- // We are having shape layer in which we are going to add map icons ShapeLayer _globalMapIconLayer = new ShapeLayer("IconLayer") { Caption = "IconLayer" }; // adding layer in map wpfMapControl.Layers.Add(_globalMa...
by webdirekt
Fri Jul 28, 2017 11:05 am
Forum: PTV xServer.NET (Admin=OH)
Topic: Looking for solution to display active region in Map center
Replies: 2
Views: 5279

Re: Looking for solution to display active region in Map cen

Thank you very much. It works perfectly for us and solved the issue. :)
by webdirekt
Fri Jul 28, 2017 6:58 am
Forum: PTV xServer.NET (Admin=OH)
Topic: Looking for solution to display active region in Map center
Replies: 2
Views: 5279

Looking for solution to display active region in Map center

- We have the list of Points (i.e. X and Y coordinates) and Geometry data with respect to list of zip codes. - Based on result of Geometry data; we have added BaseLayer in the map using the tile renderer which is implemented from ITiledProvider interface (Ptv.XServer.Controls.Map.Layers.Tiled). - We...