Table of Contents

Getting Started With TMS FNC HERE Maps

Prerequisites

  • TMS FNC Core installed and the runtime package added to the project.
  • TMS FNC Maps installed and the runtime package added to the project.
  • A HERE platform API key.

HERE Maps requires a valid HERE platform key before the embedded map can load tiles, controls, and provider services. Start with a plain map and marker so the key, browser runtime, and network access are verified before adding style, 3D camera, labels, or heat-map overlays. Keep the APIKey assignment close to form initialization and add provider-specific setup after the key is known.

Add The Control

  1. Drop TTMSFNCHere from the TMS FNC Maps palette page onto a form.
  2. Set the APIKey property to your HERE API key.

The dropped control uses the shared TMS FNC Maps collections for markers, labels, polylines, polygons, circles, rectangles, and events, then adds HERE-specific options for map style, tilt, heading, and provider heat-map rendering. Configure Options before users begin interacting with the map so the initial camera and style match the screen's purpose.

Add A Marker

procedure TForm1.AddMunichMarker;
var
  LMarker: TTMSFNCMapsMarker;
begin
  TMSFNCHere1.APIKey := '<your HERE platform API key>';

  LMarker := TMSFNCHere1.Markers.Add;
  LMarker.Coordinate.Latitude := 48.1351;
  LMarker.Coordinate.Longitude := 11.5820;
  LMarker.Title := 'Munich';
end;

Next Steps

  • Guides - map style, 3D camera, labels, heat maps, polygons, and right-click events.
  • API reference - full class reference.

Move to the guides when the map needs provider-specific presentation or interaction behavior. The HERE guide covers the feature areas that usually require more than a single property assignment, including map style selection, 3D camera rotation, heat-map weighting, labels, polygon setup, and context-click event wiring. The API reference is the right route for exact enum values, property types, event signatures, and inherited shared map members when you are integrating HERE Maps into an existing application.