Created
August 12, 2022 07:32
-
-
Save DelphiWorlds/18abf99f78839de2e9ff913ebff9c496 to your computer and use it in GitHub Desktop.
How to hide the toolbar in TMapView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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