View Categories

MDM Vehicle Profile Configuration

1 min read

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.

Important Notes #

  • ⚠️ 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 customize profiles after initial setup
  • ✅ Configuration applies to both emergency and non-emergency variants

Configuration Keys #

Visibility & Icon Controls #

We support a maximum of 4 profiles, each have different icons available to display to users in the app. Control which vehicle profiles are available to users, these will be seen on the route planning screen

Preview Category Visibility key Icon preset ID Visibility default
car_policeCarcar_visiblecar_policetrue
car_genericCarcar_visiblecar_generictrue
car_emergencyCarcar_visiblecar_emergencytrue
car_yellowCarcar_visiblecar_yellowtrue
car_variantCarcar_visiblecar_varianttrue
truck_genericTrucktruck_visibletruck_generictrue
truck_ambulanceTrucktruck_visibletruck_ambulancetrue
police_vanTrucktruck_visiblepolice_vantrue
smoothtruck_ambulanceSmooth Trucksmoothtruck_visiblesmoothtruck_ambulancefalse
truck_fireLarge Trucklargetruck_visibletruck_firefalse
truck_ladderLarge Trucklargetruck_visibletruck_ladderfalse
truck_ladder_altLarge Trucklargetruck_visibletruck_ladder_altfalse
truck_largeLarge Trucklargetruck_visibletruck_largefalse
truck_large_altLarge Trucklargetruck_visibletruck_large_altfalse
bicycleBicyclebicycle_visiblebicyclefalse
pedestrianPedestrianpedestrian_visiblepedestrianfalse

Vehicle Dimensions #

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.

Example Configurations #

Fire Service Configuration #

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