FMX.Maps.TMapType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TMapType = (None = 0, Normal = 1, Satellite = 2, Hybrid = 3, Terrain = 4);

C++

enum class DECLSPEC_DENUM TMapType : unsigned char { None, Normal, Satellite, Hybrid, Terrain };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Maps.pas
FMX.Maps.hpp
FMX.Maps FMX.Maps

Description

The type of the map.

The available values for TMapType are:

  • None
  • Normal
  • Satellite
  • Hybrid
  • Terrain

Platform Support and Screenshots

TMapType Android iOS
Comment Screenshot Comment Screenshot

None

Removes the map layer.

Note: The markers still show.

Maps Android None.png

Not supported. Shows the same as TMapType.Normal.

Normal

Displays the map with roads and names.

Maps Android Normal.png

Displays the map with roads and names.

Maps iOs Normal.png

Satellite

Displays the satellite image of the area.

Maps Android Satellite.png

Displays the satellite image of the area.

Maps iOS Satellite.png

Hybrid

Displays the satellite image of the area and an overlay of roads and names.

Maps Android Hybrid.png

Displays the satellite image of the area and an overlay of roads and names.

Maps iOS Hybrid.png

Terrain

Displays the map with roads and names and a topographic overlay.

Maps Android Terrain.png

Not supported. Shows the same as TMapType.Normal.

See Also