C # Figure Oracle Spatial Geometries

I need to create a simple application that can display geometries from Oracle Spatial in C #. These geometries are exported from AutoCAD Map 3D 2010 to Oracle Spatial.

I need to pan, scale, manage the layers of these objects, events (for example, right-click to pop-up context menu, potentially different for each object), creating / deleting points (possibly other polygons): a kind of simple AutoCAD interface.

Should I search for an AutoCAD OEM license? Is there a drawing structure that can handle this or do I need to create my own?

+3
source share
3 answers

Desktop application

Sharpmap

Web solution

Check out Mapguide Open Source Project

It has a C # API and an Oracle provider.

+2
source

It can be painful to do it, although if you really want to code it yourself, you can see the 3D capabilities of WPF (and some other libs above it, see here ).

0
source

I did not find anything that would suit my needs, so I am going to do this using managed DirectX (which is not simple, but at least powerful).

0
source

Source: https://habr.com/ru/post/1745932/


All Articles