Skip to content

MDM vehicle profile configuration

BlueLightMaps supports MDM/Intune configuration to set default vehicle profiles for your organisation. These defaults are applied only on first app install and users can customise them afterward.

  • ⚠️ Configuration is only applied on first install
  • ⚠️ Changing MDM settings later will not affect existing users
  • ⚠️ To apply new settings, you must uninstall and reinstall the app
  • ✅ Users can customise profiles after initial setup
  • ✅ Configuration applies to both emergency and non-emergency variants

We support a maximum of 4 visible profiles. Control which vehicle profiles are available to users, these will be seen on the route planning screen

CategoryVisibility keyVisibility default
Carcar_visibletrue
Trucktruck_visibletrue
Smooth Trucksmoothtruck_visiblefalse
Large Trucklargetruck_visiblefalse
Bicyclebicycle_visiblefalse
Pedestrianpedestrian_visiblefalse

Note: Custom vehicle icons are no longer supported. The *_icon_preset keys from earlier versions of this page can be removed from existing configurations; each profile now uses its standard icon.

Set default dimensions for truck categories (values must be strings):

KeyTypeRangeDescription
truck_widthstring“1.5” – “3.0”Width in meters
truck_heightstring“2.0” – “5.0”Height in meters
truck_weightstring“1000” – “35000”Weight in kilograms
smoothtruck_widthstring“1.5” – “3.0”Width in meters
smoothtruck_heightstring“2.0” – “5.0”Height in meters
smoothtruck_weightstring“1000” – “35000”Weight in kilograms
largetruck_widthstring“1.5” – “3.0”Width in meters
largetruck_heightstring“2.0” – “5.0”Height in meters
largetruck_weightstring“1000” – “35000”Weight in kilograms

Note: Dimensions must be provided as strings in MDM configuration due to Android restrictions format.

Fire Appliances should always be configured as ‘largetruck’.

Note: *_weight sets the gross weight the app compares against posted limits. It does not control whether posted limits are obeyed. Emergency routing ignores weight limits by default, and that setting, along with any per-road exceptions, stays with the crew on the device. There is no MDM key for it. See Weight limits. Setting an accurate weight still matters: the moment a crew turns the exemption off, every route depends on it.

{
"car_visible": true,
"truck_visible": true,
"truck_width": "2.5",
"truck_height": "3.5",
"truck_weight": "12000",
"largetruck_visible": true,
"largetruck_width": "2.55",
"largetruck_height": "4.2",
"largetruck_weight": "35000",
"bicycle_visible": false,
"pedestrian_visible": true,
"transit_visible": false,
"smoothtruck_visible": false
}