Page 1 of 1

MapTypeControl , StreetViewControl, ZoomControl

PostPosted: 15 Jun 2016 10:06
by assapan
Hi,
I don't understand how these controls works :oops: , i want to hide them and the only solution i found is to set position to gmmtcpBOTTOMCENTER :mrgreen:
Code: Select all
     
        GoogleMap.JQGMapV3Options.Map.Options.ZoomControlOptions.Position := gmmtcpBOTTOMCENTER;
        GoogleMap.JQGMapV3Options.Map.Options.MapTypeControlOptions.Position := gmmtcpBOTTOMCENTER;
        GoogleMap.JQGMapV3Options.Map.Options.StreetViewControlOptions.Position := gmmtcpBOTTOMCENTER;

Re: MapTypeControl , StreetViewControl, ZoomControl

PostPosted: 16 Jun 2016 09:26
by Alexander Bulei
Hi Claude,

Try this :

delphi code
IWCGJQGMap31.JQGMapV3Options.Map.Options.ZoomControl:= False;
IWCGJQGMap31.JQGMapV3Options.Map.Options.StreetViewControl:= False;
IWCGJQGMap31.JQGMapV3Options.Map.Options.MapTypeControl:= False;


Best Regards.

Re: MapTypeControl , StreetViewControl, ZoomControl

PostPosted: 16 Jun 2016 11:26
by assapan
Alexander Bulei wrote:Hi Claude,

Try this :

delphi code
IWCGJQGMap31.JQGMapV3Options.Map.Options.ZoomControl:= False;
IWCGJQGMap31.JQGMapV3Options.Map.Options.StreetViewControl:= False;
IWCGJQGMap31.JQGMapV3Options.Map.Options.MapTypeControl:= False;


Best Regards.

Hi alex,
All of these properties are false by default even in your demo but zoomcontrol , streetviewcontrol , Maptypecontrol are visible !!

Re: MapTypeControl , StreetViewControl, ZoomControl

PostPosted: 16 Jun 2016 11:31
by assapan
Image
Image

Re: MapTypeControl , StreetViewControl, ZoomControl

PostPosted: 16 Jun 2016 11:32
by Alexander Bulei
Hi Claude,

They should be true by default :/
Fixed in next build.

Best Regards.

Re: MapTypeControl , StreetViewControl, ZoomControl

PostPosted: 16 Jun 2016 11:35
by assapan
Hi alex,
So best solution waiting for next release in to set these properties to true then back to false ?

Re: MapTypeControl , StreetViewControl, ZoomControl

PostPosted: 16 Jun 2016 11:36
by Alexander Bulei
Yes ;)

Best Regards.

Re: MapTypeControl , StreetViewControl, ZoomControl

PostPosted: 16 Jun 2016 11:43
by assapan
Sorry it doesn't work

Re: MapTypeControl , StreetViewControl, ZoomControl

PostPosted: 16 Jun 2016 11:45
by Alexander Bulei
Claude, please wait for the next build.

Best Regards.

Re: MapTypeControl , StreetViewControl, ZoomControl

PostPosted: 16 Jun 2016 11:56
by assapan
Thanks i'll wait