Search found 144 matches

by Oliver Heilig
Tue Oct 13, 2015 1:16 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Fully loaded event of Map control
Replies: 10
Views: 30695

Re: Fully loaded event of Map control

Yes you can change this at runtime with the printing property, see https://github.com/ptv-logistics/xservernet-bin/blob/master/PieChartsAndExport/Window1.xaml.cs#L195-L201 . The puprose of this property is to grab the map content for print and export. But i guess the map isn't very responsive when ...
by Oliver Heilig
Tue Oct 13, 2015 11:41 am
Forum: PTV xServer.NET (Admin=OH)
Topic: Fully loaded event of Map control
Replies: 10
Views: 30695

Re: Fully loaded event of Map control

Hello Martin,

the loded event is a standard WPF event. The imagery data is loaded asynchrounously in separate threads. There's no event like TilesLoaded in for the MapControl-layers. However there is a "synchronous mode" which can be used if you want to use the control to print or export the map ...
by Oliver Heilig
Fri Oct 02, 2015 12:48 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Overlapping street numbers of feature layers
Replies: 3
Views: 21039

Re: Overlapping street numbers of feature layers

The Featuer-Layer Incidents and TruckAttributes are more some kind of map-style rather than a separate layer for the client. The reference implementation is here:
https://svc-eu-n-test.cloud.ptvgroup.com/CodeSampleBrowser/index.jsp#samples/featurelayer-rendering-leaflet

The Feature-Layer is ...
by Oliver Heilig
Thu Oct 01, 2015 12:17 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Overlapping street numbers of feature layers
Replies: 3
Views: 21039

Re: Overlapping street numbers of feature layers

Hello,

that’s a good question, and not easy to explain.

With the „old“ technology the TruckAttributes and Incidents were handled as separate client-overlay that contained only these objects. This is not the case with the new FeatureLayer-based Truck-Attributes and Incidents. Here these objects are ...
by Oliver Heilig
Fri Jun 12, 2015 1:11 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Tips to optimize xServer.NET for limited-memory scenarios
Replies: 0
Views: 6774

Tips to optimize xServer.NET for limited-memory scenarios

Hello again,

i've written an article+test about how to otimize xServer.NET for low-memory scenarios

https://github.com/ptv-logistics/xserve ... /Readme.md

Oliver
by Oliver Heilig
Thu Mar 26, 2015 8:33 am
Forum: PTV Webclients (Ajax, Leaflet, OpenLayers, WMS, ...) (Admin=BWE)
Topic: Own symbols in the map
Replies: 1
Views: 7482

Re: Own symbols in the map

Hello hrudat,

if your question refers to how to add Bitmaps to xServer.NET control, You should take a look at https://github.com/ptv-logistics/xservernet-bin (Project SelectionDemo)

Image

Regards

Oliver
by Oliver Heilig
Thu Mar 26, 2015 8:00 am
Forum: PTV Webclients (Ajax, Leaflet, OpenLayers, WMS, ...) (Admin=BWE)
Topic: Relay PTV xServer Requests in your ASP.NET Middleware
Replies: 0
Views: 6913

Relay PTV xServer Requests in your ASP.NET Middleware

Hi there,

added a new tutorial to our GitHub space that shows how to relay xServer Requests in your ASP.NET Middleware.

https://github.com/ptv-logistics/XServerAspProxy

This can be useful when accessing xServer behind a firewall, allow cross-domain and cross-scheme calls, add some load ...
by Oliver Heilig
Mon Mar 02, 2015 12:01 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Changing Pan and Zoom behavior
Replies: 3
Views: 11951

Re: Changing Pan and Zoom behavior

I've added a second option to disable the zoom on double-click.
by Oliver Heilig
Fri Feb 27, 2015 1:36 pm
Forum: PTV xServer.NET (Admin=OH)
Topic: Changing Pan and Zoom behavior
Replies: 3
Views: 11951

Re: Changing Pan and Zoom behavior

Uups, you're right. I've added the missing file.

Tanks,

Oliver
by Oliver Heilig
Wed Feb 25, 2015 10:42 am
Forum: PTV xServer.NET (Admin=OH)
Topic: Changing Pan and Zoom behavior
Replies: 3
Views: 11951

Changing Pan and Zoom behavior

Hello,

i was asked if it is possible to change the pan/zoom behavior, so the user can explicitly switch between drag and select instead of holding down the Shift key. We think it is useful to have some kind of MouseDragMode in the next release of the SDK, but currently this is not supported ...