MapControl Class
Represents a UI control that displays a View.
NuGet/Assembly: See Remarks
Syntax
// Windows Forms implementation on Windows
public class MapControl : System.Windows.Forms.UserControl;
// WPF (Windows Presentation Foundation) implementation on Windows
public class MapControl : System.Windows.Controls.Control;
// Android .NET implementation
public class MapControl : Android.Views.SurfaceView;
// .NET MAUI implementation
public class MapView : Microsoft.Maui.Controls.View;
Remarks
A Carmenta Engine MapControl is used to integrate a map view into the UI of an application. Carmenta Engine provides several different MapControl classes, for different API:s and UI platforms.
This page provides information on all the different MapControl classes, which is different from other pages which only describe one specific class.
In the sections below, specific notes are given when some information only applies to some of the actual MapControl classes.
All MapControl classes
Class name | Language | UI framework | Platforms | Defined in module |
---|---|---|---|---|
C++ | None, abstract base class | Windows, Linux, Android | CECore | |
C++ | Qt Widgets | Windows, Linux | Header-only | |
C++ | Qt Quick | Windows, Linux, Android | Header-only | |
C++ | X11 | Linux | Header-only | |
C# | Windows Forms | Windows | CECore, Carmenta.Engine.ver.Forms.nupkg | |
C# | WPF (Windows Presentation Foundation) | Windows | CEControls, Carmenta.Engine.ver.Controls.nupkg | |
C# | .NET Maui | Windows, Android | Carmenta.Engine.ver.Maui.nupkg | |
C# | .NET 6 | Android | Carmenta.Engine.ver.Android.nupkg | |
Java | Java AWT | Windows, Linux | CEAwt | |
Java | Java Android | Android | CEAndroid |
Using the C++ MapControl base class
Class name: MapControl
Namespace: Carmenta.Engine
Include: <Carmenta/Engine/Core.hpp>
Dynamic link library: CECore.Cpp64.dll
Library: CECore.Cpp64.lib
Platforms: Windows, Linux, Android
This MapControl is the abstract base class of all other C++ map control classes. It cannot be used by itself, an application needs to subclass it to intregrate it with whatever UI framework it is using, or use one of the provided subclasses.
A subclass must override the GetWindow (not available in C#) method and return the WindowHandle of the window the control should draw into. The application or subclass must also "feed" the control with events/messages received from the UI system, typically by just passing all Windows messages to the control.
Examples of how this can be subclassed can be found in Sample application using C++ and Windows API (Win32) and Sample application using C++ and Microsoft Foundation Class Library.
If you subclass directly from MapControl you should always implement a destructor and, as the first statement in the destructor, call WaitForBackgroundThreadEvents (not available in C#). This will halt the destruction of the control until any pending events from background threads have been handled and ensures that the control does not receive any new events while it is being destroyed.
Even though the class has limited functionality, it still serves an important purpose: it makes it possible to use built-in tools like StandardTool, or to write new tools which can be reused in other applications, using other UI frameworks. See the ITool interface for more information about writing tools.
The default behavior of the C++ MapControl is to re-throw exceptions that occur when it calls into the Carmenta Engine kernel. You can override the OnError (not available in C#) method if you want to suppress this behavior, for example if you want to send the errors to an application log or display a custom error dialog.
Using the Qt Widget MapControl
Class name: QtMapControl
Namespace: Carmenta.Engine
Include: <Carmenta/Engine/Controls/QtMapControl.hpp>
Platforms: Windows, Linux
The C++ API provides the class QtMapControl which is a MapControl implementation for use in a Qt Widgets application. It must be included explicitly (it is not included through the Core.hpp header file). You must also add the QtMapControl.hpp header file to your project to make the Qt tools extract the necessary metadata and include in the build,otherwise you will see some unresolved symbols when you link your application.
For more information on how to use it see Sample application using C++ and the Qt class library.
When using the QtMapControl on Linux, the Qt libraries must use the xcb platform plugin. If running on Wayland, you can make Qt use the correct plugin by setting the environment variable QT_QPA_PLATFORM to xcb before starting the application.
Using the Qt Quick MapControl
Class name: QtQuickMapControl
Namespace: Carmenta.Engine
Include: <Carmenta/Engine/Controls/QtQuickMapControl.hpp>
Platforms: Windows, Linux, Android
The C++ API also provides the class QtQuickMapControl which is a MapControl implementation for use in a Qt Quick application. It must be included explicitly (it is not included through the Core.hpp header file). You must also add the QtQuickMapControl.hpp header file to your project to make the Qt tools extract the necessary metadata and include in the build, otherwise you will see some unresolved symbols when you link your application.
For more information on how to use it see Sample application using C++ and QtQuick.
When using the QtQuickMapControl on Linux, the Qt libraries have some requirements regarding the use of OpenGL or OpenGL ES, see the Graphics renderers supported by Carmenta Engine page for more information.
Using the X11 MapControl
Class name: X11MapControl
Namespace: Carmenta.Engine
Include: <Carmenta/Engine/Controls/X11MapControl.hpp>
Platforms: Linux
For use on Linux the C++ API also provides the class X11MapControl which is a MapControl implementation using X11. Like the QtMapControl it must also be included explicitly:
For an example on how it can be used see Sample application using C++ and low-level X11 calls.
Using the Windows Forms MapControl
Class name: MapControl
Namespace: Carmenta.Engine.Forms
Assembly: CECore.dll (.NET Framework API) or CEForms.dll (.NET Standard API)
Platforms: Windows
The Windows Forms MapControl inherits from System.Windows.Forms.UserControl, see Microsoft Developer Network article for more information.
The default behavior of the Windows Forms MapControl is to re-throw exceptions that occur when it calls into the Carmenta Engine kernel. You can provide a handler for the Error event if you want to suppress this behavior, for example if you want to send the errors to an application log or display a custom error dialog.
Limitations
The 64-bit version of the MapControl cannot be loaded and used in the Visual Studio designer, in Visual Studio 2019 and earlier, because Visual Studio runs as a 32-bit process. As an alternative, you can instantiate and initialize a MapControl at runtime instead, for example when the form that should contain the MapControl is being initialized. The Basic Map Application Tutorial shows how this can be done in a Windows Forms application.
Using the WPF MapControl
Class name: MapControl
Namespace: Carmenta.Engine.Controls
Assembly: CEControls.dll
Platforms: Windows
The WPF (Windows Presentation Foundation) MapControl inherits from System.Windows.Controls.Control, see Microsoft Developer Network article for more information.
This control works almost exactly like the Windows Forms MapControl, except it can only use a DirectX renderer, which is hardware accelerated, or a Software renderer. It will automatically replace the renderer of a connected view according to the following table:
Renderer of View being attached | Renderer used by the WPF MapControl |
---|---|
The default behavior of the Windows Presentation Foundation MapControl is to rethrow exceptions that occur when it calls into the Carmenta Engine kernel. You can provide a handler for the Error event and set the Handled property of the ErrorEventArgs parameter to True if you want to suppress this behavior, for example if you want to send the errors to an application log or display a custom error dialog.
Remote Desktop
The WPF MapControl works over Remote Desktop connections and the remote machine will render frames into a memory buffer using hardware acceleration, including for example a 3D GlobeView. Each frame that is rendered is copied into a WPF element (this happens internally in the WPF MapControl class) to be composed with the rest of the application GUI but since the WPF MapControl must make an extra copy of each frame when it runs remotely it will always be slower than a non-WPF application rendering the same map with OpenGL or DirectX over the same Remote Desktop connection.
Limitations
The 64-bit version of the MapControl cannot be loaded and used in the Visual Studio designer, in Visual Studio 2019 and earlier, because it runs as a 32-bit process. As an alternative, you can instantiate and initialize a MapControl at runtime instead, for example when the form that should contain the MapControl is being initialized.
Using the Maui MapControl
Class name: MapControl
Namespace: Carmenta.Engine.Maui
Assembly: CEMaui.dll
Platforms: Windows, Android
This control is used to integrate Carmenta Engine with a NET MAUI application. It inherits from Microsoft.Maui.Controls.View.
On Windows this control can only use a DirectX renderer, which is hardware accelerated, or a Software renderer. It will automatically replace the renderer of a connected view according to the following table:
Renderer of View being attached | Renderer used by the MAUI MapControl on Windows |
---|---|
Limitations
On Windows the Carmenta Engine MAUI MapControl will render frames into a memory buffer using hardware acceleration, including for example a 3D GlobeView. Each frame that is rendered is copied into a MAUI element (this happens internally in the MAUI MapControl class) to be composed with the rest of the application GUI but since the MAUI MapControl must make an extra copy of each frame when it runs it will always be slower than a non-MAUI application rendering the same map with OpenGL or DirectX on the same computer.
Using the Android .NET MapControl
Class name: MapControl
Namespace: Carmenta.Engine.Android
Assembly: CEAndroid.dll
Platforms: Android
This class is the Android/.NET version of the MapControl class. It inherits from Android.Views.SurfaceView, see SurfaceView reference documentation for more information.
It can be used like any other Android widget class. The MapControl can be added directly in a .AXML file for native Android GUI.
Using the Java AWT MapControl
Class name: MapControl
Package: com.carmenta.engine.awt
JAR file: CEAwt.jar
Platforms: Windows, Linux
The Windows and Linux version of the Java MapControl extends java.awt.Canvas, see the Java AWT Canvas documentation for more information.
The MapControl class can used like any other AWT control. It can also be used together with light-weight Swing components.
If you run a Java 11 application on a high DPI screen, the JVM might automatically scale the size of the map control. However, the Carmenta Engine view and drawable will still use physical pixels. So for instance, if you use the X and Y coordinates from a mouse event in a call to View.WhatsAt you must first scale the coordinates, by multiplying with the drawable width/height, and dividing by the map control width/height.
The map control tries very hard to disable drawing of the background, to avoid flicker. However, with some JVMs under some Linux versions, this is not enough. If you experience flicker, for instance when the map control is being resized, you can try setting the java system property sun.awt.noerasebackground to true to solve it.
The default behavior of the Java MapControl is to re-throw exceptions that occur when it calls into the Carmenta Engine kernel. You can provide a handler for the Error event if you want to suppress this behavior, for example if you want to send the errors to an application log or display a custom error dialog.
Using the Android Java MapControl
Class name: MapControl
Package: com.carmenta.engine.android
JAR file: CEAndroid.jar
Platforms: Android
This class is a replacement for the MapControl class found in the Java API on Windows and Linux, modified to work on Android devices. Instead of inheriting from java.awt.Canvas, this class inherits from the android.view.SurfaceView class, see SurfaceView reference documentation for more information. It can be used like any other Android view class.
MapControl Members
The MapControl type has the following members.
Constructors
Name | Description |
---|---|
MapControl | Initializes a new instance of one of the MapControl classes. |
Properties
Name | Description |
---|---|
GuiDelayMinimum | The minimum amount of time in milliseconds that needs to pass between an update ending and another one starting. |
GuiDelayPercentage | The percentage of the previous update time used to delay the next update. |
IsConnected | Gets a value that tells whether the MapControl is connected to a View. |
Gets a value that tells whether the current platform supports touch input. | |
Tool | Gets or sets the ITool that is used by the MapControl. |
ToolTimerInterval | The interval used by the MapControl to update tools. |
TouchTool | Gets or sets the ITouchTool that is used by the MapControl. |
UpdateInterval | The update interval used by the MapControl. |
UpdateMode | Gets or sets the update mode used by the MapControl. |
View | Gets or sets the View that is displayed by the MapControl. |
ViewOwnership | Gets or sets a value that determines whether the MapControl or application owns the View. |
Methods
Name | Description |
---|---|
SetCustomCursor | Replaces one of the predefined mouse cursors with a custom cursor. |
UpdateView | Overloaded. Updates the map presentation. |
Events
Name | Description |
---|---|
AreaChanged | Occurs when the connected View fires the View.AreaChanged event. |
Busy | Occurs when the control is busy drawing or loading data. |
CustomDraw | Occurs when the connected View fires the View.CustomDraw event. |
CustomDrawBackground | Occurs when the connected View fires the View.CustomDrawBackground event. |
Error | Occurs when an operation raises an exception. |
HoverChanged | Occurs when the connected View fires the View.HoverChanged event. |
Idle | Occurs after an update when all data has been loaded. |
SelectionChanged | Occurs when the connected View fires the View.SelectionChanged event. |
Updated | Occurs when the connected View fires the View.Updated event. |
Updating | Occurs when the connected View fires the View.Updating event. |