Skip to content

Instantly share code, notes, and snippets.

@DelphiWorlds
Created August 12, 2022 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DelphiWorlds/18abf99f78839de2e9ff913ebff9c496 to your computer and use it in GitHub Desktop.
Save DelphiWorlds/18abf99f78839de2e9ff913ebff9c496 to your computer and use it in GitHub Desktop.
How to hide the toolbar in TMapView
uses
Androidapi.JNI.PlayServices.Maps;
procedure TForm1.FormCreate(Sender: TObject);
var
LMap: JGoogleMap;
begin
if Supports(MapView1, JGoogleMap, LMap) then
LMap.getUiSettings.setMapToolbarEnabled(False);
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment