Class Map
- Namespace
- Geotab.Checkmate.ObjectModel.AddIns
- Assembly
- Geotab.Checkmate.ObjectModel.dll
Represents the Map Add-in item.
public class Map : IAddInItem
- Inheritance
-
Map
- Implements
- Inherited Members
Constructors
Map(string?, ItemName?, bool?, MapScript?, string?)
Initializes a new instance of the Map class.
public Map(string? page, ItemName? title, bool? noView, MapScript? mapScript, string? titleString)
Parameters
page
stringPage where Map Add-in will reside within.
title
ItemNameThis is a heading (in multiple languages) displayed at the top of the panel when there are multiple Map Add-ins installed.
noView
bool?If true, the add-in will not be displayed in the right-side panel. The default value is false.
mapScript
MapScriptCollection of files for the Add-in.
titleString
stringThis is a heading displayed at the top of the panel when there are multiple Map Add-ins installed
Properties
MapScript
Gets or sets the MapScript.
public MapScript? MapScript { get; set; }
Property Value
NoView
Gets or sets a value indicating whether the add-in will be displayed in the right-side panel.
public bool? NoView { get; set; }
Property Value
Remarks
The default value is false.
Page
Gets or sets the page the Map Add-in will reside within.
public string? Page { get; set; }
Property Value
Remarks
This could be “map” (The Map page) or “tripsHistory” (the Trips History page). The default value is “map”.
Title
Gets or sets the heading displayed at the top of the panel when there are multiple Map Add-ins installed and title is listed in multiple languages.
public ItemName? Title { get; set; }
Property Value
Remarks
If a "title" is not provided, the Add-in defaults to the "name" parameter.
TitleString
Gets or sets the heading displayed at the top of the panel when there are multiple Map Add-ins installed.
public string? TitleString { get; set; }
Property Value
Remarks
If a "title" is not provided, the Add-in defaults to the "name" parameter.