Track Assets in a Smarter & More Flexible Way with Cygnus Track Internationalization Support!
Cygnus Track, ThinkGeo's GPS Asset Tracking Solution, can now be custom-tailored to fit even the most complex tracking requirements by incorporating a new set of features and functionality to give users a vast amount of options and control when tracking their assets. With Cygnus Track Internationalization Support, Cygnus Track users will now be able to track assets in the language of their choice and assign a default language for each account in the system, giving them the ultimate flexibility they need to securely manage and track assets anywhere in the world.
In addition to assigning default languages for each account, with Cygnus Track Internationalization Support, system administrators will be able to specify a language preference for each user in the system. This allows both Cygnus Track accounts and individual Cygnus Track users to have a language preference assigned, which is accomplished through a unique and easy to use web-front-end. In essence, the web-front-end allows administrators to create their own languages and integrate and assign them throughout the system. Furthermore, the new language support will include both Western languages and complex Asian languages, such as Arabic, Chinese, and Thai.
One of the most exciting features of Cygnus Track Internationalization Support is the ability system administrators will have to tailor and adapt language verbiage to meet the unique goals and needs of their company. With this powerful new feature, existing language verbiage can be matched to special business requirements and plans, as well as used to target specific marketing and ad campaigns.
Be sure to look for Cygnus Track Internationalization Support this month with the release of the following languages soon after deployment: English, Spanish, French, Portuguese, German, Hungarian, Chinese, Japanese, Arabic, and Thai.
For more information about Cygnus Track Internationalization Support, please request to have a member of our sales staff contact you or email our professional sales team at sales@thinkgeo.com. You can also call toll-free 1-866-847-7510 to speak with a sales representative right away!
Map Suite Default Labeler Properties: What Are They and What Do They Do?
Ever wonder exactly what the Map Suite Default Labeler Properties are and how they affect the appearance of labels on your maps? This article will explain the Default Labeler in detail and discuss its functionality.
Default Labeler is set as a property of the Threshold class. The Default Labeler contains a number of properties that control how and where labels will be displayed on your map in relation to the physical feature that will be labeled. Further, these Default Labeler properties are applied to the following Label Renderers of the Threshold class: Label Renderer, Label Value Renderer, and Label Class Break Renderer.
With the Default Labeler properties, you can control the following functionality: overlapping of labels from the same layer or different layers, fitting labels inside a polygon, setting a ration-label length/ line-segment length for line-based features, and the way same string labels are duplicated. Also, the Default Labeler properties are distinguished from Text Symbol properties, which affect how labels appear according to the color, size, and boldness of the font being used.
Finally, it is important to note that the Default Labeler property can be bypassed by creating your own Labeler. To do that, you will need to create a class that implements the I-Labeler interface and set the Labeler Plug-in property to that class.
Not Sure Which Products are Right For You?
No problem! Let our team of experts help you get the package that's right for you and your organization. Tell us what you want to accomplish and we will work with you to get the product that best fits your needs.
|
Experience the Turnkey Solution!
ThinkGeo now offers customers a complete all-in-one tracking package with its Turnkey Solution. With ThinkGeo's Turnkey solution for Cygnus Track, you can have a complete GPS tracking set that includes Cygnus Track software, GPS tracking devices, and a cellular communication link, which is everything you will need to get started! The Cygnus Track Turnkey solution is essentially a complete GPS tracking system in a single box. Also, when you purchase a one year contract with ThinkGeo, your new account will be activated for free.
Another great aspect of the Turnkey Solution is that it enables customers to receive volume discounts on GPS devices based on the number of devices they have in service. This becomes increasingly beneficial as a company's tracking needs grow and more and more GPS devices are needed and added. Plus, with the Turnkey Solution, ThinkGeo customers will be able to track up to 10,000 locations per month at no additional cost! Further, ThinkGeo offers its customers a wide variety of GPS tracking hardware to choose from, including the rugged, dependable, and feature-rich Enfora MT-GL. The Enfora MT-GL is compact and well suited for almost any vehicle type, weather condition, or tracking situation.
Finally, the Turnkey Solution includes ThinkGeo's Bronze Support Package free of charge! Our Bronze Support Package is one of the best in the industry and includes all of the following: unlimited discussion forum posts, 10 Level 1 Support Tickets per year, and full access to ThinkGeo's support team during business hours. With the Cygnus Track Turnkey Solution, ThinkGeo provides the devices, airtime, and tracking software, all you need to provide are the assets to track!
For more information about the Turnkey Solution and pricing, please request to have a member of our sales staff contact you or email our professional sales team at sales@thinkgeo.com. You can also call toll-free 1-866-847-7510 to speak directly to a sales representative.
Map Suite Tech Tip
Map Suite Desktop: How to Control Your Mouse Events
This month's tech tip will demonstrate to Map Suite Desktop users how to have more control over their mouse events by using a class inherited from Map. This is accomplished by overriding the OnMouseUp method. For example, overriding the OnMouseUp method can enable you to control whether or not the SelectMapShapes event is fired by right-clicking your mouse.
Also, overriding the OnMouseUp method can be further extended to the TrackZoomIn mode. In this example, you could zoom-in by left-clicking and raise the SelectMapShapes event by right-clicking. Understanding how to overwrite the OnMouseUp method will enable you to use any combination of mode and mouse button that you desire.
VB.Net
Public Class MyMap : Inherits Map
Protected Overrides Sub OnMouseUp(ByVal e As MouseEventArgs)
If Me.Mode = ModeType.TrackZoomIn Then
If e.Button = MouseButtons.Right Then
Me.Mode = ModeType.SelectMapShapes
MyBase.OnMouseUp(e)
Me.Mode = ModeType.TrackZoomIn
Else
MyBase.OnMouseUp(e)
End If
Else
MyBase.OnMouseUp(e)
End If
End Sub
End Class
C#
public class MyMap : Map
{
protected override void OnMouseUp(MouseEventArgs e)
{
if (this.Mode == ModeType.TrackZoomIn)
{
if (e.Button == MouseButtons.Right)
{
this.Mode = ModeType.SelectMapShapes;
base.OnMouseUp(e);
this.Mode = ModeType.TrackZoomIn;
}
else
{
base.OnMouseUp(e);
}
}
else
{
base.OnMouseUp(e);
}
}
}
|